There is an unused error in ERC20Facet.sol: ERC20InvalidApprover.
The options are to remove it, or use it.
I don't think it's needed because:
- approve() uses msg.sender as approver, which can never be address(0)
- permit() signature verification would fail for address(0) anyway
Originally posted by @adamgall in #40 (comment)
There is an unused error in
ERC20Facet.sol:ERC20InvalidApprover.The options are to remove it, or use it.
I don't think it's needed because:
Originally posted by @adamgall in #40 (comment)