We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a8b47c commit af85d8eCopy full SHA for af85d8e
cmd/utils/flags.go
@@ -367,7 +367,7 @@ var (
367
MinerRecommitIntervalFlag = cli.DurationFlag{
368
Name: "miner.recommit",
369
Usage: "Time interval to recreate the block being mined.",
370
- Value: 3 * time.Second,
+ Value: eth.DefaultConfig.MinerRecommit,
371
}
372
// Account settings
373
UnlockedAccountFlag = cli.StringFlag{
eth/config.go
@@ -49,6 +49,7 @@ var DefaultConfig = Config{
49
TrieCache: 256,
50
TrieTimeout: 60 * time.Minute,
51
MinerGasPrice: big.NewInt(18 * params.Shannon),
52
+ MinerRecommit: 3 * time.Second,
53
54
TxPool: core.DefaultTxPoolConfig,
55
GPO: gasprice.Config{
0 commit comments