mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
core: check genesis block before writeout
This commit is contained in:
parent
0262ba58cb
commit
eaed7584f1
1 changed files with 4 additions and 0 deletions
|
|
@ -82,6 +82,10 @@ func WriteGenesisBlock(stateDb, blockDb common.Database, reader io.Reader) (*typ
|
||||||
}, nil, nil, nil)
|
}, nil, nil, nil)
|
||||||
block.Td = difficulty
|
block.Td = difficulty
|
||||||
|
|
||||||
|
if block := GetBlockByHash(blockDb, block.Hash()); block != nil {
|
||||||
|
return nil, fmt.Errorf("Block %x already in database", block.Hash())
|
||||||
|
}
|
||||||
|
|
||||||
statedb.Sync()
|
statedb.Sync()
|
||||||
|
|
||||||
err = WriteBlock(blockDb, block)
|
err = WriteBlock(blockDb, block)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue