aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/utils.go
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-09 15:48:18 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-11 20:01:41 +0800
commit09d0d55fc579701191ff34f38cc20b437ee23577 (patch)
tree16f77a960c7428145961891b7f116e25dc6daf1b /rpc/api/utils.go
parentfaab931ce1282dea50c8fdf0577c42ee67f69828 (diff)
downloaddexon-09d0d55fc579701191ff34f38cc20b437ee23577.tar.gz
dexon-09d0d55fc579701191ff34f38cc20b437ee23577.tar.zst
dexon-09d0d55fc579701191ff34f38cc20b437ee23577.zip
added debug API
Diffstat (limited to 'rpc/api/utils.go')
-rw-r--r--rpc/api/utils.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/rpc/api/utils.go b/rpc/api/utils.go
index 173a880d4..6e6d5c7b0 100644
--- a/rpc/api/utils.go
+++ b/rpc/api/utils.go
@@ -21,6 +21,8 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth.
for i, name := range names {
switch strings.ToLower(strings.TrimSpace(name)) {
+ case DebugApiName:
+ apis[i] = NewDebugApi(xeth, eth, codec)
case EthApiName:
apis[i] = NewEthApi(xeth, codec)
case MinerApiName:
@@ -39,6 +41,8 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth.
func Javascript(name string) string {
switch strings.ToLower(strings.TrimSpace(name)) {
+ case DebugApiName:
+ return Debug_JS
case MinerApiName:
return Miner_JS
case NetApiName: