From d004387574da5731295027ccf1da58a610ba65ea Mon Sep 17 00:00:00 2001 From: Cyyber Ttechno <kaushal.forex@gmail.com> Date: Mon, 23 Mar 2020 21:20:18 +0530 Subject: [PATCH] Fix: Added missing property decorated in VoteStats --- src/qrl/core/VoteStats.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qrl/core/VoteStats.py b/src/qrl/core/VoteStats.py index 88b0692f6..21b39d224 100644 --- a/src/qrl/core/VoteStats.py +++ b/src/qrl/core/VoteStats.py @@ -14,6 +14,7 @@ def __init__(self, protobuf_block=None): if protobuf_block is None: self._data = qrl_pb2.VoteStats() + @property def pbdata(self): return self._data