From b7fa07d297b045e5e87fee8db77a64df165a54d5 Mon Sep 17 00:00:00 2001 From: Dowland Aiello Date: Thu, 18 Jul 2024 13:18:50 -0700 Subject: [PATCH] Remove a TODO. --- local-interchaintest/src/main.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/local-interchaintest/src/main.rs b/local-interchaintest/src/main.rs index 0bbc7d61e..eb75d8889 100644 --- a/local-interchaintest/src/main.rs +++ b/local-interchaintest/src/main.rs @@ -65,9 +65,11 @@ fn main() -> Result<(), Box> { base_chain: String::from("osmosis"), base_denom: String::from("uosmo"), }; - - // TODO: - // Test case (osmosis -> neutron) + let uosmo_ntrn = Denom::Interchain { + base_denom: String::from("uosmo"), + base_chain: String::from("osmosis"), + dest_chain: String::from("neutron"), + }; TestRunner::new(&mut ctx, args) .start()? @@ -308,7 +310,7 @@ fn main() -> Result<(), Box> { ), ) .with_pool( - amoguscoin.clone(), + uosmo_ntrn.clone(), bruhtoken.clone(), Pool::Astroport( AstroportPoolBuilder::default()