From 4ac59a80497a57b6098324e507c4aed80646fb2b Mon Sep 17 00:00:00 2001 From: "Justin R. Evans" <330911+jurevans@users.noreply.github.com> Date: Wed, 4 Dec 2024 12:53:37 +0000 Subject: [PATCH] fix: ibc transfer should also not have an empty string memo (#1381) --- apps/namadillo/src/lib/transactions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/namadillo/src/lib/transactions.ts b/apps/namadillo/src/lib/transactions.ts index bef7ae62ba..b91e144c8c 100644 --- a/apps/namadillo/src/lib/transactions.ts +++ b/apps/namadillo/src/lib/transactions.ts @@ -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);