diff options
Diffstat (limited to 'rpc/shared/errors.go')
-rw-r--r-- | rpc/shared/errors.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rpc/shared/errors.go b/rpc/shared/errors.go index d43858a40..d5a7011f9 100644 --- a/rpc/shared/errors.go +++ b/rpc/shared/errors.go @@ -65,16 +65,16 @@ func NewNotImplementedError(method string) *NotImplementedError { } type NotReadyError struct { - Method string + Resource string } func (e *NotReadyError) Error() string { - return fmt.Sprintf("%s method not ready", e.Method) + return fmt.Sprintf("%s not ready", e.Resource) } -func NewNotReadyError(method string) *NotReadyError { +func NewNotReadyError(resource string) *NotReadyError { return &NotReadyError{ - Method: method, + Resource: resource, } } |