Skip to content

Commit

Permalink
apply suggested change
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Holst Swende <martin@swende.se>
  • Loading branch information
jwasinger and holiman committed Sep 21, 2022
1 parent 03e5d1f commit 89271ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func ReadGenesis(db ethdb.Database) (*Genesis, error) {
}
if len(blob) != 0 {
if err := genesis.Alloc.UnmarshalJSON(blob); err != nil {
return nil, fmt.Errorf("could not unmartial genesis state json: %s", err)
return nil, fmt.Errorf("could not unmarshal genesis state json: %s", err)
}
}
genesis.Config = rawdb.ReadChainConfig(db, stored)
Expand Down

0 comments on commit 89271ad

Please sign in to comment.