From 47a35b45103e8f53028c6f25431a6394a38a7c3e Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Fri, 17 Apr 2020 22:51:12 +0200
Subject: [PATCH] [enh] blocks: add powMin in the block explorer

---
 silkaj/commands.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/silkaj/commands.py b/silkaj/commands.py
index a583977a..729216bd 100644
--- a/silkaj/commands.py
+++ b/silkaj/commands.py
@@ -275,6 +275,7 @@ async def list_blocks(number, detailed):
             issuer["gentime"] = convert_time(blocks[j]["time"], "all")
             issuer["mediantime"] = convert_time(blocks[j]["medianTime"], "all")
             issuer["hash"] = blocks[j]["hash"][:10]
+            issuer["powMin"] = blocks[j]["powMin"]
         issuers_dict[issuer["pubkey"]] = issuer
         list_issuers.append(issuer)
         j += 1
-- 
GitLab