summaryrefslogtreecommitdiff
path: root/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces')
-rw-r--r--interfaces/rpc/interface.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/rpc/interface.go b/interfaces/rpc/interface.go
index 7fd2668c..683fd2ec 100644
--- a/interfaces/rpc/interface.go
+++ b/interfaces/rpc/interface.go
@@ -3,5 +3,5 @@ package rpc
// RPCer declares the ability to create set of public RPC methods.
type RPCer interface {
// Provides RPC methods for the given service.
- RPC() (interface{}, error)
+ RPC() interface{}
}