mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-02-01 03:12:15 +00:00
Sync before height command
This commit is contained in:
parent
3e3f445ca3
commit
61dc063fe1
@ -627,10 +627,13 @@ impl Command for HeightCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn exec(&self, _args: &[&str], lightclient: &LightClient) -> String {
|
fn exec(&self, _args: &[&str], lightclient: &LightClient) -> String {
|
||||||
format!("{}",
|
match lightclient.do_sync(true) {
|
||||||
|
Ok(_) => format!("{}",
|
||||||
object! {
|
object! {
|
||||||
"height" => lightclient.last_scanned_height()
|
"height" => lightclient.last_scanned_height()
|
||||||
}.pretty(2))
|
}.pretty(2)),
|
||||||
|
Err(e) => e
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user