diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-07-01 16:13:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-01 16:13:53 +0800 |
commit | da9aad88768efaae066d97e5cbfeb5a87a2adc90 (patch) | |
tree | 54d13e3a4f6e52a46d69a2f78ce1fc59d4beacb3 /eth/cpu_mining.go | |
parent | 1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff) | |
parent | 96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (diff) | |
download | go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.gz go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.bz2 go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.lz go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.xz go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.zst go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.zip |
Merge pull request #2759 from karalabe/drop-redundant-full-service
cmd, common, console, eth, release: drop redundant "full"s
Diffstat (limited to 'eth/cpu_mining.go')
-rw-r--r-- | eth/cpu_mining.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/cpu_mining.go b/eth/cpu_mining.go index 143b9c98a..3469d394e 100644 --- a/eth/cpu_mining.go +++ b/eth/cpu_mining.go @@ -28,7 +28,7 @@ import ( const disabledInfo = "Set GO_OPENCL and re-build to enable." -func (s *FullNodeService) StartMining(threads int, gpus string) error { +func (s *Ethereum) StartMining(threads int, gpus string) error { eb, err := s.Etherbase() if err != nil { err = fmt.Errorf("Cannot start mining without etherbase address: %v", err) |