aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/shared
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-08-28 09:42:01 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-08-28 09:42:01 +0800
commitd9addf79fadfed85a7437184aa3ab12622eb5d13 (patch)
tree20bca0f2c36d2fd48abf791332ef15a35eb02520 /rpc/shared
parent829201382b67e95ab31fca887234d1858c11c810 (diff)
downloadgo-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar
go-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.gz
go-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.bz2
go-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.lz
go-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.xz
go-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.tar.zst
go-tangerine-d9addf79fadfed85a7437184aa3ab12622eb5d13.zip
Improve error string and remove unneeded else clause
Diffstat (limited to 'rpc/shared')
-rw-r--r--rpc/shared/errors.go8
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,
}
}