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:15:33 +0800 |
commit | bbfa0a3dcb82e704828d1438261ff26c50c4ccc3 (patch) | |
tree | f4f4f5cf0989df231b42a06ebdfca29a5e676fae /rpc/api/api.go | |
parent | 348f1562e29c80cac3c1d13ff255a25ed4ec81c7 (diff) | |
download | dexon-bbfa0a3dcb82e704828d1438261ff26c50c4ccc3.tar.gz dexon-bbfa0a3dcb82e704828d1438261ff26c50c4ccc3.tar.zst dexon-bbfa0a3dcb82e704828d1438261ff26c50c4ccc3.zip |
added API/IPC commandline flags
Diffstat (limited to 'rpc/api/api.go')
-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 e431e5c1e..f62e48772 100644 --- a/rpc/api/api.go +++ b/rpc/api/api.go @@ -27,6 +27,11 @@ var ( }, ",") ) +const ( + // List with all API's which are offered over the IPC interface by default + DefaultIpcApis = "eth" +) + // Ethereum RPC API interface type EthereumApi interface { // API identifier |