From 05af58a37ea4568e3651e47f020b8aa7983bb478 Mon Sep 17 00:00:00 2001 From: Norman Meier Date: Wed, 24 Jul 2024 14:43:07 +0200 Subject: [PATCH] chore: lint Signed-off-by: Norman Meier --- fetch/fetch.go | 1 + 1 file changed, 1 insertion(+) diff --git a/fetch/fetch.go b/fetch/fetch.go index a0ee94e5..8329b432 100644 --- a/fetch/fetch.go +++ b/fetch/fetch.go @@ -301,6 +301,7 @@ func getGenesisBlock(client Client) (*bft_types.Block, error) { } appState := gblock.Genesis.AppState + genesisState, ok := appState.(gnoland.GnoGenesisState) if !ok { return nil, fmt.Errorf("unknown genesis state kind '%T'", appState)