Skip to content

Commit b242eee

Browse files
authored
fix: transfers will emit an approval event (#64)
Fixes recallnet/ipc#486
1 parent b7c31ba commit b242eee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/token/Recall.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ contract Recall is
112112
{
113113
uint256 _allowance = allowance(sender, spender);
114114
if (_allowance != type(uint256).max) {
115-
_approve(sender, spender, _allowance - amount);
115+
_approve(sender, spender, _allowance - amount, false);
116116
}
117117
}
118118

0 commit comments

Comments
 (0)