added miner API

This commit is contained in:
Bas van Kervel
2015-06-08 14:42:15 +02:00
committed by Bas van Kervel
parent cb7f2d43b6
commit 4b9b633dfe
5 changed files with 323 additions and 1 deletions

View File

@@ -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"
)