aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/eth.go
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-08-28 09:42:01 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-08-28 09:42:01 +0800
commitd9addf79fadfed85a7437184aa3ab12622eb5d13 (patch)
tree20bca0f2c36d2fd48abf791332ef15a35eb02520 /rpc/api/eth.go
parent829201382b67e95ab31fca887234d1858c11c810 (diff)
downloaddexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar
dexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.gz
dexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.bz2
dexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.lz
dexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.xz
dexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.zst
dexon-d9addf79fadfed85a7437184aa3ab12622eb5d13.zip
Improve error string and remove unneeded else clause
Diffstat (limited to 'rpc/api/eth.go')
-rw-r--r--rpc/api/eth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api/eth.go b/rpc/api/eth.go
index 253b6d5cf..ba87e86c6 100644
--- a/rpc/api/eth.go
+++ b/rpc/api/eth.go
@@ -565,7 +565,7 @@ func (self *ethApi) GetWork(req *shared.Request) (interface{}, error) {
self.xeth.SetMining(true, 0)
ret, err := self.xeth.RemoteMining().GetWork()
if err != nil {
- return nil, shared.NewNotReadyError("getWork")
+ return nil, shared.NewNotReadyError("mining work")
} else {
return ret, nil
}