mirror of https://github.com/status-im/op-geth.git
core: revert invalid block dedup code (#15235)
This commit is contained in:
parent
c2d93ded35
commit
629b5837e9
|
@ -796,11 +796,6 @@ func (bc *BlockChain) WriteBlockAndState(block *types.Block, receipts []*types.R
|
||||||
bc.mu.Lock()
|
bc.mu.Lock()
|
||||||
defer bc.mu.Unlock()
|
defer bc.mu.Unlock()
|
||||||
|
|
||||||
if bc.HasBlock(block.Hash(), block.NumberU64()) {
|
|
||||||
log.Trace("Block existed", "hash", block.Hash())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
localTd := bc.GetTd(bc.currentBlock.Hash(), bc.currentBlock.NumberU64())
|
localTd := bc.GetTd(bc.currentBlock.Hash(), bc.currentBlock.NumberU64())
|
||||||
externTd := new(big.Int).Add(block.Difficulty(), ptd)
|
externTd := new(big.Int).Add(block.Difficulty(), ptd)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue