fix(server(/v2)): fix fallback genesis path (#22564)

This commit is contained in:
Julien Robert
2024-11-20 15:02:02 +00:00
committed by GitHub
parent 50c5963d96
commit 1effb80c8b
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -507,7 +507,12 @@ func DefaultBaseappOptions(appOpts types.AppOptions) []func(*baseapp.BaseApp) {
chainID := cast.ToString(appOpts.Get(flags.FlagChainID))
if chainID == "" {
// fallback to genesis chain-id
reader, err := os.Open(filepath.Join(homeDir, "config", "genesis.json"))
genesisPathCfg := appOpts.GetString("genesis_file")
if genesisPathCfg == "" {
genesisPathCfg = filepath.Join("config", "genesis.json")
}
reader, err := os.Open(filepath.Join(homeDir, genesisPathCfg))
if err != nil {
panic(err)
}
+1 -1
View File
@@ -94,7 +94,7 @@ func New[T transaction.Tx](
chainID, _ := cfg[FlagChainID].(string)
if chainID == "" {
// fallback to genesis chain-id
reader, err := os.Open(filepath.Join(home, "config", "genesis.json"))
reader, err := os.Open(srv.config.ConfigTomlConfig.GenesisFile())
if err != nil {
return nil, fmt.Errorf("failed to open genesis file: %w", err)
}