WIP
This commit is contained in:
parent
f3db4f5a9c
commit
aefd382394
1 changed files with 3 additions and 2 deletions
|
@ -71,8 +71,9 @@ impl CliClient {
|
||||||
let output = command.output().expect("command output failed").stdout;
|
let output = command.output().expect("command output failed").stdout;
|
||||||
let output_str: String = std::str::from_utf8(&output).expect("unable to parse command output").to_string();
|
let output_str: String = std::str::from_utf8(&output).expect("unable to parse command output").to_string();
|
||||||
let json: Value = serde_json::from_str(&output_str).expect("could not convert to JSON");
|
let json: Value = serde_json::from_str(&output_str).expect("could not convert to JSON");
|
||||||
let mut gas_price = json["price"]["amount"].to_string();
|
|
||||||
gas_price.push_str("untrn");
|
let mut gas_price: String = json["price"]["amount"].to_string();
|
||||||
|
gas_price.push_str(&json["price"]["denom"].to_string());
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
kind: CliClientType::Neutrond,
|
kind: CliClientType::Neutrond,
|
||||||
|
|
Loading…
Reference in a new issue