File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,10 @@ import (
6
6
"path/filepath"
7
7
8
8
"cosmossdk.io/store"
9
+ genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
9
10
"github.com/spf13/cast"
10
11
"github.com/spf13/viper"
11
12
12
- tmtypes "github.com/cometbft/cometbft/types"
13
-
14
13
"cosmossdk.io/log"
15
14
"cosmossdk.io/store/snapshots"
16
15
snapshottypes "cosmossdk.io/store/snapshots/types"
@@ -57,7 +56,7 @@ func (a appCreator) newApp(
57
56
if chainID == "" {
58
57
// fallback to genesis chain-id
59
58
genDocFile := filepath .Join (homeDir , cast .ToString (appOpts .Get ("genesis_file" )))
60
- appGenesis , err := tmtypes . GenesisDocFromFile (genDocFile )
59
+ appGenesis , err := genutiltypes . AppGenesisFromFile (genDocFile )
61
60
if err != nil {
62
61
panic (err )
63
62
}
You can’t perform that action at this time.
0 commit comments