Skip to content

Commit

Permalink
Fixed _callHook param in TTUV2Native
Browse files Browse the repository at this point in the history
  • Loading branch information
boyuanx committed Dec 31, 2023
1 parent 72d1e52 commit aeff60c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/core/extensions/native-token/TTUV2Native.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ contract TTUV2Native is TokenTableUnlockerV2 {
}("");
require(sent, string(data));
emit TokensWithdrawn(_msgSender(), amount);
_callHook(TokenTableUnlockerV2.withdrawDeposit.selector, _msgData());
_callHook(_msgData());
}

function _claim(
Expand Down

0 comments on commit aeff60c

Please sign in to comment.