From 33e6d7e6e0800fa82575e44c58ceef1d0dd073c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Wed, 16 Oct 2019 13:36:50 +0200 Subject: [PATCH] Add method for retrieving block headers from daemon --- utils/daemoninfo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/daemoninfo.py b/utils/daemoninfo.py index 8c12321..66c11f8 100755 --- a/utils/daemoninfo.py +++ b/utils/daemoninfo.py @@ -39,7 +39,8 @@ print("Net: {net:>15s}net\n" else 'stage' if info['stagenet'] \ else 'main' if info['mainnet'] else 'unknown', **info)) -for hdr in reversed(d.headers(info['height']-7, info['height']-1)): +print("Last 6 blocks:") +for hdr in reversed(d.headers(info['height']-6, info['height']-1)): print("{height:10d} {hash} {block_size_kb:6.2f} kB {num_txes:3d} txn(s) " "v{major_version:d}".format( block_size_kb=hdr['block_size']/1024.0, **hdr))