Skip to content

Commit

Permalink
IBC denom get fix: denoms are calculated using src denoms.
Browse files Browse the repository at this point in the history
  • Loading branch information
dowlandaiello committed Jul 2, 2024
1 parent f5b2800 commit d26c395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/fixtures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ impl TestContext {

let channel = self
.transfer_channel_ids
.get(&(src_chain_string, dest_chain_string))?;
.get(&(dest_chain_string, src_chain_string))?;
let trace = format!("transfer/{}/{}", channel, base_denom_str);

let resp = dest_chain
Expand Down

0 comments on commit d26c395

Please sign in to comment.