Merge pull request #1724 from Gustav-Simonsson/get_work

rpc: return error code for eth_getWork when no work ready
This commit is contained in:
Felix Lange
2015-08-29 10:54:10 +02:00
4 changed files with 27 additions and 4 deletions

View File

@ -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("mining work")
} else {
return ret, nil
}
}
func (self *ethApi) SubmitWork(req *shared.Request) (interface{}, error) {