WIP
This commit is contained in:
parent
9bc321716e
commit
195a565ad2
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
use cw_client::{GrpcClient, CwClient};
|
use cw_client::{CliClient, CwClient};
|
||||||
use quartz_tcbinfo_msgs::{QueryMsg, ExecuteMsg};
|
use quartz_tcbinfo_msgs::{QueryMsg, ExecuteMsg};
|
||||||
use quoted_string::strip_dquotes;
|
use quoted_string::strip_dquotes;
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, Result};
|
||||||
|
@ -108,7 +108,6 @@ pub async fn main() {
|
||||||
let sender: &str = &args[4];
|
let sender: &str = &args[4];
|
||||||
let gas: &u64 = &args[5].parse().expect("gas must be a u64 value");
|
let gas: &u64 = &args[5].parse().expect("gas must be a u64 value");
|
||||||
let fees: &str = &args[6];
|
let fees: &str = &args[6];
|
||||||
let sk: &str = &args[7];
|
|
||||||
upsert_tcbinfo(url, contract_address, Id::try_from(chain_id.clone()).expect("invalid chain id"), sender, *gas, fees).await.expect("TCBInfo update failed");
|
upsert_tcbinfo(url, contract_address, Id::try_from(chain_id.clone()).expect("invalid chain id"), sender, *gas, fees).await.expect("TCBInfo update failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue