added debug API

This commit is contained in:
Bas van Kervel
2015-06-09 09:48:18 +02:00
committed by Bas van Kervel
parent faab931ce1
commit 09d0d55fc5
9 changed files with 982 additions and 714 deletions

View File

@ -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: