From d35513833b5854b9736a06330e7cd9d3c2ba9194 Mon Sep 17 00:00:00 2001 From: Dowland Aiello Date: Fri, 19 Jul 2024 05:01:55 -0700 Subject: [PATCH] Perform setup after creating astroport factory. --- local-interchaintest/src/setup.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/local-interchaintest/src/setup.rs b/local-interchaintest/src/setup.rs index 193bf2569..3fde6033b 100644 --- a/local-interchaintest/src/setup.rs +++ b/local-interchaintest/src/setup.rs @@ -193,7 +193,6 @@ impl<'a> TestRunner<'a> { // Perform hot start setup // Mapping of denoms to their matching denoms, chain id's, channel id's, and ports self.denom_map = Default::default(); - test.setup(&mut self.denom_map, self.test_ctx)?; let ctx = &mut self.test_ctx; @@ -229,6 +228,8 @@ impl<'a> TestRunner<'a> { ctx.build_tx_create_price_oracle().send()?; ctx.build_tx_update_auction_oracle().send()?; + test.setup(&mut self.denom_map, ctx)?; + let ntrn_to_osmo = ctx .transfer_channel_ids .get(&("neutron".into(), "osmosis".into()))