forked from cerc-io/plugeth
Merge pull request #1522 from obscuren/genesis-block-check
core: check genesis block before writeout
This commit is contained in:
commit
f6097f4a0a
@ -82,6 +82,10 @@ func WriteGenesisBlock(stateDb, blockDb common.Database, reader io.Reader) (*typ
|
||||
}, nil, nil, nil)
|
||||
block.Td = difficulty
|
||||
|
||||
if block := GetBlockByHash(blockDb, block.Hash()); block != nil {
|
||||
return nil, fmt.Errorf("Block %x already in database", block.Hash())
|
||||
}
|
||||
|
||||
statedb.Sync()
|
||||
|
||||
err = WriteBlock(blockDb, block)
|
||||
|
Loading…
Reference in New Issue
Block a user