-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: miscellaneous #63
Conversation
src/token/Recall.sol
Outdated
@@ -112,6 +108,7 @@ contract Recall is | |||
{ | |||
uint256 _allowance = allowance(sender, spender); | |||
if (_allowance != type(uint256).max) { | |||
require(_allowance >= amount, "ERC20: insufficient allowance"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might be good to use a custom error? because we are not using require
s in other contracts for assertions. but nbd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iirc we have solhint warning if you use require
, and I previously went through and converted everything to use explicit errors. so I agree...keep it consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Throws an error now, all good?
Fixes recallnet/ipc#488