Skip to content
Snippets Groups Projects
Commit c9a08658 authored by Holger's avatar Holger
Browse files

At some checks in block and blockchain.stream

parent 1bc6b09f
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,12 @@ class Block(BlockchainObject):
@property
def block_num(self):
"""Returns the block number"""
return int(self['block_id'][:8], base=16)
if "block_id" in self:
return int(self['block_id'][:8], base=16)
elif "id" in self:
return self['id']
else:
return self.identifier
def time(self):
"""Return a datatime instance for the timestamp of this block"""
......
......@@ -689,6 +689,8 @@ class Blockchain(object):
_id = ""
timestamp = ""
for trx_nr in range(len(trx)):
if "operations" not in trx[trx_nr]:
continue
for event in trx[trx_nr]["operations"]:
if isinstance(event, list):
op_type, op = event
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment