Support for confirmations number in transactions.

This commit is contained in:
Alexey V. Litvinov 2018-10-18 16:15:20 +10:00
parent 339363b575
commit 4fc8495727
2 changed files with 3 additions and 0 deletions

View file

@ -267,6 +267,7 @@ class JSONRPCWallet(object):
'height': data.get('height', data.get('block_height')) or None,
'timestamp': datetime.fromtimestamp(data['timestamp']) if 'timestamp' in data else None,
'blob': data.get('blob', None),
'confirmations': data.get('confirmations', None)
})
def export_outputs(self):