diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-09 15:48:18 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:41 +0800 |
commit | 09d0d55fc579701191ff34f38cc20b437ee23577 (patch) | |
tree | 16f77a960c7428145961891b7f116e25dc6daf1b /rpc/api/api.go | |
parent | faab931ce1282dea50c8fdf0577c42ee67f69828 (diff) | |
download | go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.gz go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.bz2 go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.lz go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.xz go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.zst go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.zip |
added debug API
Diffstat (limited to 'rpc/api/api.go')
-rw-r--r-- | rpc/api/api.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpc/api/api.go b/rpc/api/api.go index e4f0e7446..067a4d4e8 100644 --- a/rpc/api/api.go +++ b/rpc/api/api.go @@ -4,9 +4,10 @@ import "github.com/ethereum/go-ethereum/rpc/shared" const ( // List with all API's which are offered over the IPC interface by default - DefaultIpcApis = "eth,miner,net,web3" + DefaultIpcApis = "debug,eth,miner,net,web3" EthApiName = "eth" + DebugApiName = "debug" MergedApiName = "merged" MinerApiName = "miner" NetApiName = "net" |