aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/utils.go
diff options
context:
space:
mode:
Diffstat (limited to 'rpc/api/utils.go')
-rw-r--r--rpc/api/utils.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api/utils.go b/rpc/api/utils.go
index 6e372c061..d6820cd2e 100644
--- a/rpc/api/utils.go
+++ b/rpc/api/utils.go
@@ -165,7 +165,7 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, stack *no
var eth *eth.Ethereum
if stack != nil {
- if _, err := stack.SingletonService(&eth); err != nil {
+ if err := stack.Service(&eth); err != nil {
return nil, err
}
}