aboutsummaryrefslogtreecommitdiffstats
path: root/eth/gpu_mining.go
diff options
context:
space:
mode:
Diffstat (limited to 'eth/gpu_mining.go')
-rw-r--r--eth/gpu_mining.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/eth/gpu_mining.go b/eth/gpu_mining.go
index c351c2bdd..cd734bd3c 100644
--- a/eth/gpu_mining.go
+++ b/eth/gpu_mining.go
@@ -56,8 +56,7 @@ func (s *Ethereum) StartMining(threads int, gpus string) error {
}
// TODO: re-creating miner is a bit ugly
- cl := ethash.NewCL(ids)
- s.miner = miner.New(s, s.EventMux(), cl)
+ s.miner = miner.New(s, s.chainConfig, s.EventMux(), ethash.NewCL(ids))
go s.miner.Start(eb, len(ids))
return nil
}