diff options
author | Determinant <[email protected]> | 2019-08-14 23:55:12 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-08-14 23:55:12 -0400 |
commit | 03513e267d25b5086b3f905b6d1bc5635fcda845 (patch) | |
tree | d2c800a6d04f7def64b4061ceb97f5faa13cf8ea /miner/miner.go | |
parent | 63fc17f85121f84d597742a49b99ab3d022aa6bd (diff) |
...
Diffstat (limited to 'miner/miner.go')
-rw-r--r-- | miner/miner.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/miner/miner.go b/miner/miner.go index 4e36fed..53a37b0 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -49,15 +49,16 @@ type Config struct { Recommit time.Duration // The time interval for miner to re-create mining work. Noverify bool // Disable remote mining solution verification(only useful in ethash). ManualMining bool + ManualUncle bool } type Miner struct { w *worker } -func New(eth Backend, config *Config, chainConfig *params.ChainConfig, mux *event.TypeMux, engine consensus.Engine, isLocalBlock func(block *types.Block) bool, manualMining bool) *Miner { +func New(eth Backend, config *Config, chainConfig *params.ChainConfig, mux *event.TypeMux, engine consensus.Engine, isLocalBlock func(block *types.Block) bool) *Miner { return &Miner { - w: newWorker(config, chainConfig, engine, eth, mux, isLocalBlock, manualMining), + w: newWorker(config, chainConfig, engine, eth, mux, isLocalBlock), } } |