Skip to content

Commit a21b500

Browse files
committed
update neutronstd with msg transfer encoding field support
1 parent 79618ad commit a21b500

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ overflow-checks = true
1515

1616
[workspace.dependencies]
1717
cosmwasm-std = "3.0.2"
18-
neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "feat/cosmwasm-3" }
18+
neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "feat/ibc-transfer-encoding-support" }
1919
cosmwasm-schema = { version = "3.0.2", default-features = false }
2020
cw2 = "3.0.0"
2121
cw-storage-plus = "3.0.1"

contracts/ibc_transfer/src/contract.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ fn execute_send(
157157
timeout_timestamp: 0,
158158
memo: "".to_string(),
159159
fee: fee.clone(),
160+
encoding: String::new(),
160161
};
161162
let msg2 = MsgTransfer {
162163
source_port: "transfer".to_string(),
@@ -174,6 +175,7 @@ fn execute_send(
174175
timeout_timestamp: 0,
175176
memo: "".to_string(),
176177
fee: fee.clone(),
178+
encoding: String::new(),
177179
};
178180
// prepare first transfer message with payload of Type1
179181
let submsg1 = msg_with_sudo_callback(

0 commit comments

Comments
 (0)