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
d5677b131d
commit
13965918be
@ -554,6 +554,7 @@ func (sc *SendersCache) flush(tx kv.RwTx, byNonce *ByNonce, sendersWithoutTransa
|
||||
}
|
||||
fmt.Printf("del:%d,%d,%d\n", binary.BigEndian.Uint64(k), sc.commitID, evicted)
|
||||
if sc.commitID-binary.BigEndian.Uint64(k) < 5 {
|
||||
fmt.Printf("del break:%d,%d,%d\n", binary.BigEndian.Uint64(k), sc.commitID, evicted)
|
||||
break
|
||||
}
|
||||
for i := 0; i < len(v); i += 8 {
|
||||
@ -668,6 +669,7 @@ func (sc *SendersCache) flush(tx kv.RwTx, byNonce *ByNonce, sendersWithoutTransa
|
||||
}
|
||||
|
||||
//TODO: flush and evict
|
||||
fmt.Printf("senders flush finish\n")
|
||||
|
||||
return nil
|
||||
}
|
||||
@ -1078,6 +1080,7 @@ func (p *TxPool) flush(tx kv.RwTx, senders *SendersCache) error {
|
||||
}
|
||||
|
||||
if err := senders.flush(tx, p.txNonce2Tx, sendersWithoutTransactions); err != nil {
|
||||
panic(err)
|
||||
return err
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user