From d0878d5b56e96bc690d7a86ad87cd852cab4afd7 Mon Sep 17 00:00:00 2001 From: jwasinger Date: Fri, 19 Aug 2022 14:53:20 -0400 Subject: [PATCH] apply suggested change Co-authored-by: Martin Holst Swende --- core/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/genesis.go b/core/genesis.go index cfce2f2b8f7c..dea1ea5c3111 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -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)