diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-08 20:50:11 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:40 +0800 |
commit | d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335 (patch) | |
tree | 251442afd362566e0b7f9e0cfb66fdcda4324634 /rpc/api/utils.go | |
parent | 4b9b633dfe8c36d3a8909024ff23a1cdedce44d8 (diff) | |
download | go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.tar go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.tar.gz go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.tar.bz2 go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.tar.lz go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.tar.xz go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.tar.zst go-tangerine-d2a87f6f72b1582fd6e220e2a00d7c3f5a6df335.zip |
added net API
Diffstat (limited to 'rpc/api/utils.go')
-rw-r--r-- | rpc/api/utils.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rpc/api/utils.go b/rpc/api/utils.go index 488eb1ec6..173a880d4 100644 --- a/rpc/api/utils.go +++ b/rpc/api/utils.go @@ -25,6 +25,8 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth. apis[i] = NewEthApi(xeth, codec) case MinerApiName: apis[i] = NewMinerApi(eth, codec) + case NetApiName: + apis[i] = NewNetApi(xeth, eth, codec) case Web3ApiName: apis[i] = NewWeb3(xeth, codec) default: @@ -39,6 +41,8 @@ func Javascript(name string) string { switch strings.ToLower(strings.TrimSpace(name)) { case MinerApiName: return Miner_JS + case NetApiName: + return Net_JS } return "" |