mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
minor nit fixed
This commit is contained in:
parent
a7e3222023
commit
5f6e2d334c
1 changed files with 1 additions and 3 deletions
|
|
@ -1,8 +1,6 @@
|
||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/internal/cli/flagset"
|
"github.com/ethereum/go-ethereum/internal/cli/flagset"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -173,7 +171,7 @@ func (c *Command) Flags(config *Config) *flagset.Flagset {
|
||||||
Name: "bor.heimdalltimeout",
|
Name: "bor.heimdalltimeout",
|
||||||
Usage: "Timeout period for bor's outgoing requests to heimdall",
|
Usage: "Timeout period for bor's outgoing requests to heimdall",
|
||||||
Value: &c.cliConfig.Heimdall.Timeout,
|
Value: &c.cliConfig.Heimdall.Timeout,
|
||||||
Default: 5 * time.Second,
|
Default: c.cliConfig.Heimdall.Timeout,
|
||||||
})
|
})
|
||||||
f.BoolFlag(&flagset.BoolFlag{
|
f.BoolFlag(&flagset.BoolFlag{
|
||||||
Name: "bor.withoutheimdall",
|
Name: "bor.withoutheimdall",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue