eth/ethconfig: fix typo on comment

This commit is contained in:
Hyunchel Kim 2023-10-08 12:55:24 -04:00
parent 0851861739
commit 24c1ecce48
No known key found for this signature in database
GPG key ID: 0436BF9838B5CCC5

View file

@ -177,7 +177,7 @@ func CreateConsensusEngine(config *params.ChainConfig, db ethdb.Database) (conse
return beacon.New(clique.New(config.Clique, db)), nil
}
// If defaulting to proof-of-work, enforce an already merged network since
// we cannot run PoW algorithms and more, so we cannot even follow a chain
// we cannot run PoW algorithms anymore, so we cannot even follow a chain
// not coordinated by a beacon node.
if !config.TerminalTotalDifficultyPassed {
return nil, errors.New("ethash is only supported as a historical component of already merged networks")