Skip to content

Commit

Permalink
chore: fix comment (#109)
Browse files Browse the repository at this point in the history
<!-- πŸŽ‰ 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)
  • Loading branch information
Pantani authored Oct 19, 2024
1 parent 56cac31 commit 0938caf
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions app/app_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,6 @@ import (
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
"google.golang.org/protobuf/types/known/durationpb"

// NOTE: The genutils module must occur after staking so that pools are
// properly initialized with tokens from genesis accounts.
// NOTE: The genutils module must also occur after auth so that it can access the params from auth.
// NOTE: Capability module must occur first so that it can initialize any capabilities
// so that other modules that want to create or claim capabilities afterwards in InitChain
// can do so safely.

claimmodulev1 "github.com/ignite/modules/api/modules/claim/module/v1"
fundraisingmodulev1 "github.com/ignite/modules/api/modules/fundraising/module/v1"
mintmodulev1 "github.com/ignite/modules/api/modules/mint/module/v1"
Expand All @@ -70,6 +63,12 @@ import (
)

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

0 comments on commit 0938caf

Please sign in to comment.