block_processor passes height on to advance_txs

This commit is contained in:
Lex Berezhny 2019-04-07 21:51:42 -04:00
parent cfb051396a
commit ffa9e508e9

View file

@ -377,7 +377,7 @@ class BlockProcessor:
for block in blocks:
height += 1
undo_info = self.advance_txs(block.transactions)
undo_info = self.advance_txs(block.transactions, height)
if height >= min_height:
self.undo_infos.append((undo_info, height))
self.db.write_raw_block(block.raw, height)
@ -387,7 +387,7 @@ class BlockProcessor:
self.headers.extend(headers)
self.tip = self.coin.header_hash(headers[-1])
def advance_txs(self, txs):
def advance_txs(self, txs, height):
self.tx_hashes.append(b''.join(tx_hash for tx, tx_hash in txs))
# Use local vars for speed in the loops