mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
No senders is fine (#2775)
This commit is contained in:
parent
3c0cb82454
commit
0625cd4f11
@ -779,7 +779,7 @@ func ReadBlockWithSenders(db kv.Tx, hash common.Hash, number uint64) (*types.Blo
|
||||
return nil, nil, err
|
||||
}
|
||||
if len(senders) != block.Transactions().Len() {
|
||||
return nil, nil, nil
|
||||
return block, senders, nil // no senders is fine - will recover them on the fly
|
||||
}
|
||||
block.SendersToTxs(senders)
|
||||
return block, senders, nil
|
||||
|
Loading…
Reference in New Issue
Block a user