We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35b671c commit 3f9f8e2Copy full SHA for 3f9f8e2
contracts/adapters/ibc/ibc-callbacks/src/contract.rs
@@ -266,7 +266,7 @@ pub fn ibc_destination_callback(
266
// Create a coin to send to the contract based on the packet data
267
let coin = Coin {
268
denom: recv_denom.clone(),
269
- amount: Uint128::from_str(&recv_denom)?,
+ amount: Uint128::from_str(&packet_data.amount)?,
270
};
271
272
// @NotJeremyLiu TODO: Turn this into a sub msg and figure out what the recovery case is here
0 commit comments