Skip to content

Commit 44a1864

Browse files
committed
evm: Fix transfer event
1 parent 553462f commit 44a1864

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

evm/src/NttManager/NttManager.sol

+3-1
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,9 @@ contract NttManager is INttManager, NttManagerState {
405405
TrimmedAmount memory amt = amount;
406406
uint16 destinationChain = recipientChain;
407407

408-
emit TransferSent(recipient, amt.untrim(tokenDecimals_), msg.value, destinationChain, seq);
408+
emit TransferSent(
409+
recipient, amt.untrim(tokenDecimals_), totalPriceQuote, destinationChain, seq
410+
);
409411

410412
// return the sequence number
411413
return sequence;

0 commit comments

Comments
 (0)