mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-09 12:31:21 +00:00
add state check assert routine
This commit is contained in:
parent
3ab6b5074c
commit
7f7c312f70
@ -1127,9 +1127,9 @@ func (p *TxPool) fromDB(ctx context.Context, tx kv.RwTx, coreTx kv.Tx) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if len(vv) == 0 {
|
if len(vv) == 0 {
|
||||||
tx.ForEach(kv.PooledSenderIDToAdress, nil, func(k, vvvv []byte) error {
|
tx.ForEach(kv.PooledSenderIDToAdress, nil, func(kkk, vvvv []byte) error {
|
||||||
if bytes.HasPrefix(k, v[:7]) {
|
if bytes.HasPrefix(kkk, v[:7]) {
|
||||||
fmt.Printf("found:%x,%x\n", k, vvvv)
|
fmt.Printf("found:%x,%x\n", kkk, vvvv)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user