aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/api.go
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-08 20:42:15 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-11 20:01:40 +0800
commit4b9b633dfe8c36d3a8909024ff23a1cdedce44d8 (patch)
tree34415e3133be061958f8cf33de731406c894f04a /rpc/api/api.go
parentcb7f2d43b6da260dff80e4b705271c7088112c34 (diff)
downloadgo-tangerine-4b9b633dfe8c36d3a8909024ff23a1cdedce44d8.tar.gz
go-tangerine-4b9b633dfe8c36d3a8909024ff23a1cdedce44d8.tar.zst
go-tangerine-4b9b633dfe8c36d3a8909024ff23a1cdedce44d8.zip
added miner API
Diffstat (limited to 'rpc/api/api.go')
-rw-r--r--rpc/api/api.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/rpc/api/api.go b/rpc/api/api.go
index 153c73f48..7b3774b4e 100644
--- a/rpc/api/api.go
+++ b/rpc/api/api.go
@@ -4,10 +4,11 @@ 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,web3"
+ DefaultIpcApis = "eth,web3,miner"
EthApiName = "eth"
MergedApiName = "merged"
+ MinerApiName = "miner"
Web3ApiName = "web3"
)