diff options
author | Bas van Kervel <basvankervel@ziggo.nl> | 2015-06-08 17:01:02 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:39 +0800 |
commit | 2a0d888326036be9cabe6680617ce2d1a27761d3 (patch) | |
tree | 8458bcb21f07fbc5290712029f1f4f78ab54aa5a /rpc | |
parent | 8ebf2d8fad729a8261f237bb05b6073e6c1b652f (diff) | |
download | go-tangerine-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.gz go-tangerine-2a0d888326036be9cabe6680617ce2d1a27761d3.tar.zst go-tangerine-2a0d888326036be9cabe6680617ce2d1a27761d3.zip |
added API/IPC commandline flags
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api/api.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rpc/api/api.go b/rpc/api/api.go index 758e056ed..93dc3058c 100644 --- a/rpc/api/api.go +++ b/rpc/api/api.go @@ -2,6 +2,11 @@ package api 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" +) + // Ethereum RPC API interface type EthereumApi interface { // Execute the given request and returns the response or an error |