Translate decimal type to int in tx lists

This commit is contained in:
nolash 2021-05-18 17:39:07 +02:00
parent f1f5253865
commit f035bd3e9f
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746

View File

@ -121,8 +121,8 @@ class DataCache(Cache):
'date_block': r['date_block'],
'sender': r['sender'],
'recipient': r['recipient'],
'from_value': r['from_value'],
'to_value': r['to_value'],
'from_value': int(r['from_value']),
'to_value': int(r['to_value']),
'source_token': r['source_token'],
'destination_token': r['destination_token'],
'tx_type': tx_type,