aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/net.go
diff options
context:
space:
mode:
Diffstat (limited to 'rpc/api/net.go')
-rw-r--r--rpc/api/net.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api/net.go b/rpc/api/net.go
index efc400785..6f5d55f12 100644
--- a/rpc/api/net.go
+++ b/rpc/api/net.go
@@ -10,7 +10,7 @@ import (
var (
// mapping between methods and handlers
netMapping = map[string]nethandler{
- "net_id": (*netApi).NetworkVersion,
+ "net_version": (*netApi).Version,
"net_peerCount": (*netApi).PeerCount,
"net_listening": (*netApi).IsListening,
"net_peers": (*netApi).Peers,
@@ -63,7 +63,7 @@ func (self *netApi) Name() string {
}
// Network version
-func (self *netApi) NetworkVersion(req *shared.Request) (interface{}, error) {
+func (self *netApi) Version(req *shared.Request) (interface{}, error) {
return self.xeth.NetworkVersion(), nil
}