mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-21 23:29:38 +00:00
Merge pull request #3504 from nspcc-dev/fix-loadcfg
config: get back default node configuration values
This commit is contained in:
commit
da40f2de14
1 changed files with 9 additions and 1 deletions
|
@ -6,6 +6,7 @@ import (
|
|||
"net/http"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"time"
|
||||
|
||||
"github.com/nspcc-dev/neo-go/config"
|
||||
"github.com/nspcc-dev/neo-go/pkg/config/netmode"
|
||||
|
@ -81,7 +82,6 @@ func LoadFile(configPath string, relativePath ...string) (Config, error) {
|
|||
var (
|
||||
configData []byte
|
||||
err error
|
||||
config Config
|
||||
)
|
||||
if _, err = os.Stat(configPath); os.IsNotExist(err) {
|
||||
configData, err = getEmbeddedConfig(configPath)
|
||||
|
@ -94,6 +94,14 @@ func LoadFile(configPath string, relativePath ...string) (Config, error) {
|
|||
return Config{}, fmt.Errorf("unable to read config: %w", err)
|
||||
}
|
||||
}
|
||||
config := Config{
|
||||
ApplicationConfiguration: ApplicationConfiguration{
|
||||
P2P: P2P{
|
||||
PingInterval: 30 * time.Second,
|
||||
PingTimeout: 90 * time.Second,
|
||||
},
|
||||
},
|
||||
}
|
||||
decoder := yaml.NewDecoder(bytes.NewReader(configData))
|
||||
decoder.KnownFields(true)
|
||||
err = decoder.Decode(&config)
|
||||
|
|
Loading…
Reference in a new issue