Skip to content

Commit

Permalink
Fix missing module
Browse files Browse the repository at this point in the history
  • Loading branch information
yzang2019 committed Nov 21, 2024
1 parent 9616887 commit 7266b35
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions tools/migration/utils/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,27 @@ var ModuleKeys = sdk.NewKVStoreKeys(
)

var Modules = []string{
"wasm", "aclaccesscontrol", "oracle", "epoch", "mint", "acc", "bank", "feegrant", "staking", "distribution", "slashing", "gov", "params", "ibc", "upgrade", "evidence", "transfer", "tokenfactory",
}
"acc",
"aclaccesscontrol",
"authz",
"bank",
"capability",
"distribution",
"epoch",
"evidence",
"evm",
"feegrant",
"gov",
"ibc",
"mint",
"oracle",
"params",
"slashing",
"staking",
"tokenfactory",
"transfer",
"upgrade",
"wasm"}

func BuildRawPrefix(moduleName string) string {
return fmt.Sprintf("s/k:%s/n", moduleName)
Expand Down

0 comments on commit 7266b35

Please sign in to comment.