From: Matt Corallo Date: Tue, 21 May 2019 02:24:09 +0000 (-0400) Subject: Also print hours for scan times X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=dnsseed-rust;a=commitdiff_plain;h=804547d20b708226f68d199819ac537ed2e69dc2;hp=630014412395b70195a4b75dde2b287f9d23999d Also print hours for scan times --- diff --git a/src/printer.rs b/src/printer.rs index 555fe5c..328207a 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -76,9 +76,10 @@ impl Printer { out.write_all(b"\nRetry times (in seconds):\n").expect("stdout broken?"); for i in 0..AddressState::get_count() { + let scan_secs = store.get_u64(U64Setting::RescanInterval(AddressState::from_num(i).unwrap())); out.write_all(format!( - "{:22} ({:2}): {}\n", AddressState::from_num(i).unwrap().to_str(), i, - store.get_u64(U64Setting::RescanInterval(AddressState::from_num(i).unwrap())) + "{:22} ({:2}): {:5} (ie {} min, {} hrs)\n", AddressState::from_num(i).unwrap().to_str(), i, + scan_secs, scan_secs / 60, scan_secs / 60 / 60, ).as_bytes()).expect("stdout broken?"); }