good morning!!!!

Skip to content
Snippets Groups Projects
Commit 1fe617fa authored by Bas van Kervel's avatar Bas van Kervel
Browse files

added net API

parent 87dace1f
No related branches found
No related tags found
Loading
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment