mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-06 02:52:19 +00:00
add state check assert routine
This commit is contained in:
parent
16607d14e7
commit
92740a3935
@ -569,7 +569,7 @@ func (sc *SendersCache) flush(tx kv.RwTx, byNonce *ByNonce, sendersWithoutTransa
|
||||
if sc.commitID-binary.BigEndian.Uint64(k) < 5 {
|
||||
break
|
||||
}
|
||||
fmt.Printf("del:%d\n", binary.BigEndian.Uint64(k))
|
||||
fmt.Printf("del:%d,%d\n", binary.BigEndian.Uint64(k), sc.commitID)
|
||||
for i := 0; i < len(v); i += 8 {
|
||||
senderID := binary.BigEndian.Uint64(v[i : i+8])
|
||||
if _, ok := sc.senderInfo[senderID]; ok {
|
||||
@ -976,9 +976,6 @@ 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
|
||||
@ -991,6 +988,8 @@ 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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user