Skip to content
Snippets Groups Projects
Commit d9dcf1d8 authored by inso's avatar inso
Browse files

Fix bug in txhistory loading

parent ad7f5d22
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ class TxHistory():
req_args={'number': community.network.latest_block_number})
# We look for the first block to parse, depending on awaiting and validating transfers and ud...
blocks = [tx.metadata['block_number'] for tx in self._transfers
blocks = [tx.metadata['block'] for tx in self._transfers
if tx.state in (Transfer.AWAITING, Transfer.VALIDATING)] +\
[ud['block_number'] for ud in self._dividends
if ud['state'] in (Transfer.AWAITING, Transfer.VALIDATING)] +\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment