Commit 55d85d60 authored by obscuren's avatar obscuren

eth, cmd/geth: start mining from console respects CLI flag

parent d3e84cc8
......@@ -288,7 +288,7 @@ func (js *jsre) startMining(call otto.FunctionCall) otto.Value {
return otto.FalseValue()
}
} else {
threads = 4
threads = int64(js.ethereum.MinerThreads)
}
err = js.ethereum.StartMining(int(threads))
......
......@@ -190,6 +190,7 @@ type Ethereum struct {
// logger logger.LogSystem
Mining bool
MinerThreads int
NatSpec bool
DataDir string
etherbase common.Address
......@@ -262,6 +263,7 @@ func New(config *Config) (*Ethereum, error) {
ethVersionId: config.ProtocolVersion,
netVersionId: config.NetworkId,
NatSpec: config.NatSpec,
MinerThreads: config.MinerThreads,
}
eth.chainManager = core.NewChainManager(blockDb, stateDb, eth.EventMux())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment