Skip to content

Commit

Permalink
fix: ibc transfer should also not have an empty string memo (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
jurevans authored Dec 4, 2024
1 parent 2d78352 commit 4ac59a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/namadillo/src/lib/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const createIbcTransferMessage = (
receiverAddress: string,
amount: BigNumber,
token: string,
memo: string = ""
memo?: string
): MsgTransferEncodeObject => {
const timeoutTimestampNanoseconds =
BigInt(Math.floor(Date.now() / 1000) + 60) * BigInt(1_000_000_000);
Expand Down

1 comment on commit 4ac59a8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.