Skip to content

Commit d0c5dfd

Browse files
committed
resolve gridnode module issue and pull latest release
1 parent a6aab7a commit d0c5dfd

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

app/app.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@ import (
5454
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
5555

5656
//ugdvestingmodulekeeper "github.com/unigrid-project/cosmos-sdk-unigrid-hedgehog-vesting/x/ugdvesting/keeper"
57-
paxmodulekeeper "github.com/unigrid-project/pax/x/pax/keeper"
58-
5957
gridnodemodulekeeper "github.com/unigrid-project/cosmos-gridnode/x/gridnode/keeper"
6058
ugdmintmodulekeeper "github.com/unigrid-project/cosmos-ugdmint/x/ugdmint/keeper"
59+
paxmodulekeeper "github.com/unigrid-project/pax/x/pax/keeper"
6160

6261
// this line is used by starport scaffolding # stargate/app/moduleImport
6362

app/app_config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ import (
4343
_ "github.com/cosmos/cosmos-sdk/x/bank" // import for side-effects
4444
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
4545
_ "github.com/cosmos/cosmos-sdk/x/consensus" // import for side-effects
46-
consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
4746
consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
4847
_ "github.com/cosmos/cosmos-sdk/x/crisis" // import for side-effects
4948
crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types"
@@ -118,7 +117,7 @@ var (
118117
vestingtypes.ModuleName,
119118
circuittypes.ModuleName,
120119
group.ModuleName,
121-
consensusparamtypes.ModuleName,
120+
consensustypes.ModuleName,
122121
circuittypes.ModuleName,
123122
// chain modules
124123
paxmoduletypes.ModuleName,
@@ -195,6 +194,7 @@ var (
195194
{Account: ibcfeetypes.ModuleName},
196195
{Account: icatypes.ModuleName},
197196
{Account: ugdmintmoduletypes.ModuleName, Permissions: []string{authtypes.Minter}},
197+
{Account: gridnodemoduletypes.ModuleName},
198198
// this line is used by starport scaffolding # stargate/app/maccPerms
199199
}
200200

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,4 +259,4 @@ require (
259259

260260
//replace github.com/unigrid-project/cosmos-sdk-unigrid-hedgehog-vesting => /home/evan/work/cosmos-sdk-unigrid-hedgehog-vesting
261261

262-
// replace github.com/unigrid-project/cosmos-gridnode => /home/evan/work/cosmos-sdk-gridnode
262+
//replace github.com/unigrid-project/cosmos-gridnode => /home/evan/work/cosmos-sdk-gridnode

0 commit comments

Comments
 (0)