@@ -34,6 +34,7 @@ import (
34
34
tmcfg "github.com/cometbft/cometbft/config"
35
35
tmcli "github.com/cometbft/cometbft/libs/cli"
36
36
"github.com/cometbft/cometbft/libs/log"
37
+ tmtypes "github.com/cometbft/cometbft/types"
37
38
38
39
"github.com/quicksilver-zone/quicksilver/app"
39
40
quicksilverconfig "github.com/quicksilver-zone/quicksilver/cmd/config"
@@ -234,7 +235,20 @@ func (ac appCreator) newApp(
234
235
panic (err )
235
236
}
236
237
237
- snapshotDir := filepath .Join (cast .ToString (appOpts .Get (flags .FlagHome )), "data" , "snapshots" )
238
+ homeDir := cast .ToString (appOpts .Get (flags .FlagHome ))
239
+ chainID := cast .ToString (appOpts .Get (flags .FlagChainID ))
240
+ if chainID == "" {
241
+ // fallback to genesis chain-id
242
+ genDocFile := filepath .Join (homeDir , cast .ToString (appOpts .Get ("genesis_file" )))
243
+ appGenesis , err := tmtypes .GenesisDocFromFile (genDocFile )
244
+ if err != nil {
245
+ panic (err )
246
+ }
247
+
248
+ chainID = appGenesis .ChainID
249
+ }
250
+
251
+ snapshotDir := filepath .Join (homeDir , "data" , "snapshots" )
238
252
snapshotDB , err := dbm .NewDB ("metadata" , server .GetAppDBBackend (appOpts ), snapshotDir )
239
253
if err != nil {
240
254
panic (err )
@@ -258,6 +272,7 @@ func (ac appCreator) newApp(
258
272
false ,
259
273
cast .ToBool (appOpts .Get (FlagSupplyEnabled )),
260
274
cast .ToString (appOpts .Get (FlagMetricsURL )),
275
+ baseapp .SetChainID (chainID ),
261
276
baseapp .SetPruning (pruningOpts ),
262
277
baseapp .SetMinGasPrices (cast .ToString (appOpts .Get (server .FlagMinGasPrices ))),
263
278
baseapp .SetHaltHeight (cast .ToUint64 (appOpts .Get (server .FlagHaltHeight ))),
@@ -274,6 +289,7 @@ func addModuleInitFlags(startCmd *cobra.Command) {
274
289
crisis .AddModuleInitFlags (startCmd )
275
290
startCmd .Flags ().Bool (FlagSupplyEnabled , false , "Enable supply module endpoint" )
276
291
startCmd .Flags ().String (FlagMetricsURL , "" , "Enable metrics sender" )
292
+ startCmd .Flags ().String (flags .FlagChainID , "" , "The network chain ID" )
277
293
}
278
294
279
295
func (ac appCreator ) appExport (
0 commit comments