Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
apply suggested change
Co-authored-by: Martin Holst Swende <[email protected]>
  • Loading branch information
jwasinger and holiman committed Sep 26, 2022
commit 3e73445dd1544f79caeba1f849c1ab9ae48e94e7
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