mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 19:41:19 +00:00
add state check assert routine
This commit is contained in:
parent
7ed9ddbf38
commit
937a19167b
@ -1120,6 +1120,9 @@ func (p *TxPool) discardLocked(mt *metaTx) {
|
||||
func (p *TxPool) fromDB(ctx context.Context, tx kv.RwTx, coreTx kv.Tx) error {
|
||||
p.lock.Lock()
|
||||
defer p.lock.Unlock()
|
||||
if err := p.senders.fromDB(ctx, tx, coreTx); err != nil {
|
||||
return err
|
||||
}
|
||||
if ASSERT {
|
||||
tx.ForEach(kv.PooledTransaction, nil, func(k, v []byte) error {
|
||||
vv, err := tx.GetOne(kv.PooledSenderIDToAdress, v[:8])
|
||||
@ -1133,15 +1136,13 @@ func (p *TxPool) fromDB(ctx context.Context, tx kv.RwTx, coreTx kv.Tx) error {
|
||||
}
|
||||
return nil
|
||||
})
|
||||
fmt.Printf("not foundd: %x,%x,%x\n", k, v, vv)
|
||||
fmt.Printf("now: %d\n", p.senders.senderID)
|
||||
fmt.Printf("not foundd: %d,%x,%x,%x\n", binary.BigEndian.Uint64(v[:8]), k, v, vv)
|
||||
panic("no-no")
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
if err := p.senders.fromDB(ctx, tx, coreTx); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := tx.ForEach(kv.RecentLocalTransaction, nil, func(k, v []byte) error {
|
||||
hashID := [32]byte{}
|
||||
|
Loading…
Reference in New Issue
Block a user