Skip to content

Commit

Permalink
Fix amount and denom order
Browse files Browse the repository at this point in the history
  • Loading branch information
keyleu committed Jul 10, 2024
1 parent e89a366 commit 34e0c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/setup/stride.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ impl TestContext {
) -> Result<(), Error> {
let cmd = format!(
"tx stakeibc liquid-stake {} {} --from={} --gas auto --gas-adjustment 1.3 --output=json",
liquid_stake_denom, liquid_stake_amount, sender_key,
liquid_stake_amount, liquid_stake_denom, sender_key,
);
self.get_chain(STRIDE_CHAIN_NAME).rb.tx(&cmd, true)?;

Expand Down

0 comments on commit 34e0c7a

Please sign in to comment.