You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function payRent declares to return bool. Here it does not assert that:
function _processRentCollection(
...
) internal {
...
treasury.payRent(_rentOwed);
Recommended Mitigation Steps
assert(treasury.payRent(_rentOwed));
The text was updated successfully, but these errors were encountered:
Handle
pauliax
Vulnerability details
Impact
function payRent declares to return bool. Here it does not assert that:
function _processRentCollection(
...
) internal {
...
treasury.payRent(_rentOwed);
Recommended Mitigation Steps
assert(treasury.payRent(_rentOwed));
The text was updated successfully, but these errors were encountered: