Skip to content

Commit

Permalink
Merge pull request #73 from multiversx/fix-deposit-nonce-on-event
Browse files Browse the repository at this point in the history
Fixed parameters order in the ERC20Deposit event
  • Loading branch information
iulianpascalau authored Oct 14, 2024
2 parents f6b8acf + 36847c2 commit d28aa4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/ERC20Safe.sol
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ contract ERC20Safe is Initializable, BridgeRole, Pausable {
uint112 batchNonce;
uint112 depositNonce;
(batchNonce, depositNonce) = _deposit_common(tokenAddress, amount, recipientAddress);
emit ERC20Deposit(depositNonce, batchNonce);
emit ERC20Deposit(batchNonce, depositNonce);
}

/*
Expand Down

0 comments on commit d28aa4e

Please sign in to comment.