Improve error string and remove unneeded else clause

This commit is contained in:
Gustav Simonsson
2015-08-28 03:42:01 +02:00
parent 829201382b
commit d9addf79fa
3 changed files with 6 additions and 7 deletions

View File

@ -112,9 +112,8 @@ func (a *RemoteAgent) GetWork() ([3]string, error) {
a.work[block.HashNoNonce()] = a.currentWork
return res, nil
} else {
return res, errors.New("No work available yet, don't panic.")
}
return res, errors.New("No work available yet, don't panic.")
}
// Returns true or false, but does not indicate if the PoW was correct