aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/eth.go
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-08-26 18:46:50 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-08-26 18:46:50 +0800
commit829201382b67e95ab31fca887234d1858c11c810 (patch)
tree33665cc499188069f06907e14165e8dbc8337e2f /rpc/api/eth.go
parentabce09954b6901b446c004ee06b389c338922f28 (diff)
downloaddexon-829201382b67e95ab31fca887234d1858c11c810.tar
dexon-829201382b67e95ab31fca887234d1858c11c810.tar.gz
dexon-829201382b67e95ab31fca887234d1858c11c810.tar.bz2
dexon-829201382b67e95ab31fca887234d1858c11c810.tar.lz
dexon-829201382b67e95ab31fca887234d1858c11c810.tar.xz
dexon-829201382b67e95ab31fca887234d1858c11c810.tar.zst
dexon-829201382b67e95ab31fca887234d1858c11c810.zip
rpc: return error code for eth_getWork when no work ready
Diffstat (limited to 'rpc/api/eth.go')
-rw-r--r--rpc/api/eth.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/rpc/api/eth.go b/rpc/api/eth.go
index 5199bd966..253b6d5cf 100644
--- a/rpc/api/eth.go
+++ b/rpc/api/eth.go
@@ -563,7 +563,12 @@ func (self *ethApi) GetLogs(req *shared.Request) (interface{}, error) {
func (self *ethApi) GetWork(req *shared.Request) (interface{}, error) {
self.xeth.SetMining(true, 0)
- return self.xeth.RemoteMining().GetWork(), nil
+ ret, err := self.xeth.RemoteMining().GetWork()
+ if err != nil {
+ return nil, shared.NewNotReadyError("getWork")
+ } else {
+ return ret, nil
+ }
}
func (self *ethApi) SubmitWork(req *shared.Request) (interface{}, error) {