fix(server(/v2)): fix fallback genesis path (#22564)
This commit is contained in:
parent
50c5963d96
commit
1effb80c8b
@ -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)
|
||||
}
|
||||
|
||||
@ -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)
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user