Skip to content

Commit

Permalink
fix misnamed variable (#1181)
Browse files Browse the repository at this point in the history
  • Loading branch information
biemoh authored Jan 13, 2025
1 parent 69d9375 commit 7c194d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/app/ics-020-fungible-token-transfer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ function revertInFlightChanges(sentPacket: Packet, receivedPacket: Packet) {
// identifiers, then it was a minted voucher and we need to burn it.
// Otherwise, it was an original token from our chain and we must give the tokens
// back to the escrow account.
if !isTracePrefixed(receivedPacket.destinationPort, receivedPacket.desinationChannel, token) {
if !isTracePrefixed(receivedPacket.destinationPort, receivedPacket.destinationChannel, token) {
// receive sent tokens from the received escrow account to the forwarding account
// so we must send the tokens back from the forwarding account to the received escrow account
bank.TransferCoins(forwardingAddress, reverseEscrow, token.denom, token.amount)
Expand Down

0 comments on commit 7c194d1

Please sign in to comment.