forked from LBRYCommunity/lbry-sdk
block_processor passes height on to advance_txs
This commit is contained in:
parent
cfb051396a
commit
ffa9e508e9
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue