Skip to content

Commit

Permalink
Merge pull request #275 from nomic-io/ibc-memo
Browse files Browse the repository at this point in the history
Add memo field to ibc_transfer_out
  • Loading branch information
mappum authored Feb 7, 2024
2 parents 49f959a + dfd9ac8 commit 1cb2400
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,7 @@ pub async fn ibc_transfer_out(
value.insert("receiver".to_string(), receiver_address.into());
value.insert("sender".to_string(), self_address.clone().into());
value.insert("timeout_timestamp".to_string(), timeout_timestamp.into());
value.insert("memo".to_string(), "".into());

let address = self_address
.parse()
Expand Down

0 comments on commit 1cb2400

Please sign in to comment.