From 16636343190f28eb582c127dde5ae7653e8f48d4 Mon Sep 17 00:00:00 2001 From: toktar Date: Wed, 23 Jan 2019 12:19:38 +0300 Subject: [PATCH] INDY-1920: update validator-info Signed-off-by: toktar --- scripts/validator-info | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/validator-info b/scripts/validator-info index a41878579..1ee360164 100755 --- a/scripts/validator-info +++ b/scripts/validator-info @@ -269,6 +269,9 @@ class TransactionsStats(BaseUnknown): else: return "" + def items(self): + return dict(self.val).items() + def __iter__(self): return iter(self.val)