getdata.py: fix for aeon v8

pull/4/head
stoffu 5 years ago
parent d157d99c9e
commit d4a471978e
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012

@ -91,7 +91,7 @@ class GetData():
outs_total = 0
for k in range(outs):
outs_total += tx['vout'][k]['amount']
fee = tx['rct_signatures']['txnFee'] if tx['version'] > 1 else ins_total - outs_total
fee = tx['rct_signatures']['txnFee'] if (tx['version'] & 0xff) > 1 else ins_total - outs_total
extra_size = len(tx['extra'])
if j > 0:
txs_str += ','

Loading…
Cancel
Save