Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove ica storekey #4677

Merged
merged 11 commits into from
Sep 19, 2023
3 changes: 2 additions & 1 deletion modules/apps/27-interchain-accounts/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,6 @@ func (AppModule) WeightedOperations(simState module.SimulationState) []simtypes.

// RegisterStoreDecoder registers a decoder for interchain accounts module's types
func (AppModule) RegisterStoreDecoder(sdr simtypes.StoreDecoderRegistry) {
sdr[types.StoreKey] = simulation.NewDecodeStore()
sdr[controllertypes.StoreKey] = simulation.NewDecodeStore()
sdr[hosttypes.StoreKey] = simulation.NewDecodeStore()
}
3 changes: 0 additions & 3 deletions modules/apps/27-interchain-accounts/types/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ const (
// Version defines the current version for interchain accounts
Version = "ics27-1"

// StoreKey is the store key string for interchain accounts
StoreKey = ModuleName

// RouterKey is the message route for interchain accounts
RouterKey = ModuleName

Expand Down