mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
eth/: Fix nil error in config file
This commit is contained in:
parent
5cec18b24a
commit
498c417a68
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error {
|
|||
GPO *gasprice.Config
|
||||
EnablePreimageRecording *bool
|
||||
DocRoot *string `toml:"-"`
|
||||
ExitWhenSynced time.Duration
|
||||
ExitWhenSynced *time.Duration
|
||||
}
|
||||
var dec Config
|
||||
if err := unmarshal(&dec); err != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue