From 48404fe6691026a116a0aed533fd06c8492dedb2 Mon Sep 17 00:00:00 2001 From: kiel barry Date: Mon, 7 May 2018 19:03:50 -0700 Subject: [PATCH] Update blockchain.go --- core/blockchain.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/blockchain.go b/core/blockchain.go index dc7e4562ac..e48dbe5307 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -48,6 +48,7 @@ import ( var ( blockInsertTimer = metrics.NewRegisteredTimer("chain/inserts", nil) + ErrNoGenesis = errors.New("Genesis not found in chain") )