From 18b1199ddfd10954de76eb079f901fce289718e9 Mon Sep 17 00:00:00 2001 From: Callum Waters Date: Wed, 17 Apr 2024 10:42:40 +0200 Subject: [PATCH] Update app/app.go Co-authored-by: Rootul P --- app/app.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/app.go b/app/app.go index 278c9f2975..7de8a5ab6b 100644 --- a/app/app.go +++ b/app/app.go @@ -629,8 +629,7 @@ func New( app.MsgGateKeeper = ante.NewMsgVersioningGateKeeper(app.configurator.GetAcceptedMessages()) app.MsgServiceRouter().SetCircuit(app.MsgGateKeeper) - // We only initialize the base stores that will be part of every version i.e. params - // (which contain the app version) + // Initialize the KV stores for the base modules (e.g. params). The base modules will be included in every app version. app.MountKVStores(app.baseKeys()) app.MountTransientStores(tkeys) app.MountMemoryStores(memKeys)