Skip to content

Commit

Permalink
Merge pull request #311 from bandprotocol/update-genesis-app
Browse files Browse the repository at this point in the history
[Main] Use default genesis from govv1 instead of govv1beta1
  • Loading branch information
RogerKSI committed Jul 3, 2023
2 parents 5f3edf1 + 706a584 commit a4c4b95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/cosmos/cosmos-sdk/x/genutil"
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
"github.com/cosmos/cosmos-sdk/x/group"
groupmodule "github.com/cosmos/cosmos-sdk/x/group/module"
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
Expand Down Expand Up @@ -56,7 +56,7 @@ func NewDefaultGenesisState() GenesisState {
stakingGenesis := stakingtypes.DefaultGenesisState()
distrGenesis := distrtypes.DefaultGenesisState()
mintGenesis := minttypes.DefaultGenesisState()
govGenesis := govv1beta1.DefaultGenesisState()
govGenesis := govv1.DefaultGenesisState()
crisisGenesis := crisistypes.DefaultGenesisState()
slashingGenesis := slashingtypes.DefaultGenesisState()
icaGenesis := icatypes.DefaultGenesis()
Expand Down

0 comments on commit a4c4b95

Please sign in to comment.