From 8be7dc6f0545bd2f9b0ef32f80043fcee88d24bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Fri, 11 Jun 2021 02:28:16 +0200 Subject: [PATCH] Reformat to match growing difficulty --- utils/daemoninfo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/daemoninfo.py b/utils/daemoninfo.py index 3689515..e26171e 100755 --- a/utils/daemoninfo.py +++ b/utils/daemoninfo.py @@ -32,10 +32,10 @@ def get_daemon(): d = get_daemon() info = d.info() -print("Net: {net:>15s}net\n" - "Height: {height:10d}\n" - "Difficulty: {difficulty:10d}\n" - "Alt blocks: {alt_blocks_count:10d}\n".format( +print("Net: {net:>20s}net\n" + "Height: {height:15d}\n" + "Difficulty: {difficulty:15d}\n" + "Alt blocks: {alt_blocks_count:15d}\n".format( net='test' if info['testnet'] \ else 'stage' if info['stagenet'] \ else 'main' if info['mainnet'] else 'unknown',