Skip to content

Commit

Permalink
fix(protocol): fix TokenVault.sendERC20 (#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Dec 13, 2022
1 parent 788e162 commit d42b953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/bridge/TokenVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ contract TokenVault is EssentialContract {

message.gasLimit = gasLimit;
message.processingFee = processingFee;
message.depositValue = msg.value;
message.depositValue = msg.value - processingFee;
message.refundAddress = refundAddress;
message.memo = memo;

Expand Down

0 comments on commit d42b953

Please sign in to comment.