diff --git a/simapp/app_config.go b/simapp/app_config.go index 95d978c7a6..9c971f6e49 100644 --- a/simapp/app_config.go +++ b/simapp/app_config.go @@ -130,11 +130,16 @@ var ( group.ModuleName, pooltypes.ModuleName, }, + // The following is mostly only needed when ModuleName != StoreKey name. OverrideStoreKeys: []*runtimev1alpha1.StoreKeyConfig{ { ModuleName: authtypes.ModuleName, KvStoreKey: "acc", }, + { + ModuleName: accounts.ModuleName, + KvStoreKey: accounts.StoreKey, + }, }, // NOTE: The genutils module must occur after staking so that pools are // properly initialized with tokens from genesis accounts.