aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/shared/errors.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/shared/errors.go
parentabce09954b6901b446c004ee06b389c338922f28 (diff)
downloadgo-tangerine-829201382b67e95ab31fca887234d1858c11c810.tar
go-tangerine-829201382b67e95ab31fca887234d1858c11c810.tar.gz
go-tangerine-829201382b67e95ab31fca887234d1858c11c810.tar.bz2
go-tangerine-829201382b67e95ab31fca887234d1858c11c810.tar.lz
go-tangerine-829201382b67e95ab31fca887234d1858c11c810.tar.xz
go-tangerine-829201382b67e95ab31fca887234d1858c11c810.tar.zst
go-tangerine-829201382b67e95ab31fca887234d1858c11c810.zip
rpc: return error code for eth_getWork when no work ready
Diffstat (limited to 'rpc/shared/errors.go')
-rw-r--r--rpc/shared/errors.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/rpc/shared/errors.go b/rpc/shared/errors.go
index 85af1bb2f..d43858a40 100644
--- a/rpc/shared/errors.go
+++ b/rpc/shared/errors.go
@@ -64,6 +64,20 @@ func NewNotImplementedError(method string) *NotImplementedError {
}
}
+type NotReadyError struct {
+ Method string
+}
+
+func (e *NotReadyError) Error() string {
+ return fmt.Sprintf("%s method not ready", e.Method)
+}
+
+func NewNotReadyError(method string) *NotReadyError {
+ return &NotReadyError{
+ Method: method,
+ }
+}
+
type DecodeParamError struct {
err string
}