mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
cmd: remove uncessary conversion
This commit is contained in:
parent
f6caea46db
commit
73da89d5d8
1 changed files with 1 additions and 1 deletions
|
|
@ -363,7 +363,7 @@ var (
|
||||||
MinerRecommitIntervalFlag = cli.DurationFlag{
|
MinerRecommitIntervalFlag = cli.DurationFlag{
|
||||||
Name: "miner.recommit",
|
Name: "miner.recommit",
|
||||||
Usage: "Time interval to recreate the block being mined.",
|
Usage: "Time interval to recreate the block being mined.",
|
||||||
Value: time.Duration(3 * time.Second),
|
Value: 3 * time.Second,
|
||||||
}
|
}
|
||||||
// Account settings
|
// Account settings
|
||||||
UnlockedAccountFlag = cli.StringFlag{
|
UnlockedAccountFlag = cli.StringFlag{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue