From 7c320437849b9893ee055a4783845c241e490b48 Mon Sep 17 00:00:00 2001 From: Harish Marri Date: Thu, 4 Jan 2024 21:45:54 +0530 Subject: [PATCH] fix genesis validation --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index 094dd09..58e9dde 100644 --- a/app/app.go +++ b/app/app.go @@ -126,7 +126,7 @@ var ( // and genesis verification. ModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, - genutil.AppModuleBasic{}, + genutil.NewAppModuleBasic(genutiltypes.DefaultMessageValidator), bank.AppModuleBasic{}, capability.AppModuleBasic{}, staking.AppModuleBasic{},