Skip to content

Commit

Permalink
fix: add missing memo field for MsgIbcTransfer
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCQL committed Aug 18, 2023
1 parent e38bea1 commit 688f648
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## `v0.0.32`

### Fixes

- Added missing `memo` field for `MsgIbcTransfer`

## `v0.0.31`

### Miscellaneous
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cosmes",
"version": "0.0.31",
"version": "0.0.32",
"private": false,
"packageManager": "pnpm@8.3.0",
"sideEffects": false,
Expand Down
1 change: 1 addition & 0 deletions src/client/models/MsgIbcTransfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export class MsgIbcTransfer implements Adapter {
}
: {},
timeout_timestamp: this.data.timeoutTimestamp.toString(),
memo: this.data.memo,
},
};
}
Expand Down

0 comments on commit 688f648

Please sign in to comment.