aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
Diffstat (limited to 'rpc')
-rw-r--r--rpc/api/net.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/rpc/api/net.go b/rpc/api/net.go
index 6f5d55f12..d6888ee4a 100644
--- a/rpc/api/net.go
+++ b/rpc/api/net.go
@@ -7,6 +7,10 @@ import (
"github.com/ethereum/go-ethereum/xeth"
)
+const (
+ NetApiVersion = "1.0"
+)
+
var (
// mapping between methods and handlers
netMapping = map[string]nethandler{
@@ -62,6 +66,10 @@ func (self *netApi) Name() string {
return NetApiName
}
+func (self *netApi) ApiVersion() string {
+ return NetApiVersion
+}
+
// Network version
func (self *netApi) Version(req *shared.Request) (interface{}, error) {
return self.xeth.NetworkVersion(), nil