From a1b7e1dd770c4a92703fce246c1007d64f3e6686 Mon Sep 17 00:00:00 2001 From: byeongsu-hong Date: Thu, 9 Nov 2023 13:44:09 +0000 Subject: [PATCH] rename --- rust/utils/run-locally/src/cosmos/deploy.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/utils/run-locally/src/cosmos/deploy.rs b/rust/utils/run-locally/src/cosmos/deploy.rs index 008c3a0327..ba89b280b8 100644 --- a/rust/utils/run-locally/src/cosmos/deploy.rs +++ b/rust/utils/run-locally/src/cosmos/deploy.rs @@ -54,7 +54,7 @@ pub fn deploy_cw_hyperlane( // deploy igp set #[cw_serde] - pub struct Something { + pub struct GasOracleInitMsg { pub hrp: String, pub owner: String, pub gas_token: String, @@ -67,7 +67,7 @@ pub fn deploy_cw_hyperlane( &deployer, Some(deployer_addr), codes.hpl_igp, - &Something { + GasOracleInitMsg { hrp: PREFIX.to_string(), owner: deployer_addr.clone(), gas_token: "uosmo".to_string(),