Skip to content

Commit 0938caf

Browse files
authored
chore: fix comment (#109)
<!-- πŸŽ‰ Thank you for the PR!!! πŸŽ‰ --> Closes #<issue number>. _in case of a bug fix, this should point to a bug or any other related issue(s)_ ### What does this PR do? <!-- Describe your changes here - ideally you can get that description straight from your descriptive commit message(s)! --> ### How to test? <!-- What steps in order should someone run to test --> ## Checklist These are the criteria that every PR should meet, please check them off as you review them: - [ ] Include tests - [ ] Respect code style and lint - [ ] Update documentation (*.md) (if needed)
1 parent 56cac31 commit 0938caf

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

β€Žapp/app_config.goβ€Ž

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,6 @@ import (
5151
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
5252
"google.golang.org/protobuf/types/known/durationpb"
5353

54-
// NOTE: The genutils module must occur after staking so that pools are
55-
// properly initialized with tokens from genesis accounts.
56-
// NOTE: The genutils module must also occur after auth so that it can access the params from auth.
57-
// NOTE: Capability module must occur first so that it can initialize any capabilities
58-
// so that other modules that want to create or claim capabilities afterwards in InitChain
59-
// can do so safely.
60-
6154
claimmodulev1 "github.com/ignite/modules/api/modules/claim/module/v1"
6255
fundraisingmodulev1 "github.com/ignite/modules/api/modules/fundraising/module/v1"
6356
mintmodulev1 "github.com/ignite/modules/api/modules/mint/module/v1"
@@ -70,6 +63,12 @@ import (
7063
)
7164

7265
var (
66+
// NOTE: The genutils module must occur after staking so that pools are
67+
// properly initialized with tokens from genesis accounts.
68+
// NOTE: The genutils module must also occur after auth so that it can access the params from auth.
69+
// NOTE: Capability module must occur first so that it can initialize any capabilities
70+
// so that other modules that want to create or claim capabilities afterwards in InitChain
71+
// can do so safely.
7372
genesisModuleOrder = []string{
7473
// cosmos-sdk/ibc modules
7574
capabilitytypes.ModuleName,

0 commit comments

Comments
Β (0)