Skip to content

Commit

Permalink
feat: index The L2Token in the WithdrawTo event
Browse files Browse the repository at this point in the history
  • Loading branch information
bendanzhentan committed Dec 6, 2023
1 parent 999b872 commit e656074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/L2StandardBridgeBot.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ contract L2StandardBridgeBot is Ownable {

uint256 public delegationFee;

event WithdrawTo(address indexed from, address l2Token, address to, uint256 amount, uint32 minGasLimit, bytes extraData);
event WithdrawTo(address indexed from, address indexed l2Token, address to, uint256 amount, uint32 minGasLimit, bytes extraData);

constructor(address payable _owner, uint256 _delegationFee) Ownable(_owner) {
delegationFee = _delegationFee;
Expand Down

0 comments on commit e656074

Please sign in to comment.