add state check assert routine

This commit is contained in:
alex.sharov 2021-08-27 17:15:49 +07:00
parent b9665c8347
commit 16607d14e7

View File

@ -976,6 +976,9 @@ func (p *TxPool) OnNewBlock(stateChanges map[string]senderInfo, unwindTxs, mined
return err
}
defer tx.Rollback()
p.lock.Lock()
defer p.lock.Unlock()
protocolBaseFee, pendingBaseFee = p.setBaseFee(protocolBaseFee, pendingBaseFee)
if err := senders.onNewBlock(tx, stateChanges, unwindTxs, minedTxs, blockHeight, blockHash); err != nil {
return err
@ -988,8 +991,6 @@ func (p *TxPool) OnNewBlock(stateChanges map[string]senderInfo, unwindTxs, mined
return err
}
p.lock.Lock()
defer p.lock.Unlock()
if err := onNewBlock(tx, senders, unwindTxs, minedTxs.txs, protocolBaseFee, pendingBaseFee, p.pending, p.baseFee, p.queued, p.txNonce2Tx, p.byHash, p.discardLocked); err != nil {
return err
}