clober-dex / coupon-finance

Coupon Finance Solidity Contracts
Other
1 stars 0 forks source link

ERC721Permit has redundant payable permit #105

Closed detectivekim closed 11 months ago

detectivekim commented 1 year ago

Details

The permit function is payable, but its invocation will not send native funds together with it. Hence, the payable keyword is redundant.

Impact

Loss of funds if users accidentally invoke permit() with non-zero msg.value.

Mitigation

Remove the payable keyword.