diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-10 16:37:10 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:41 +0800 |
commit | 87b62f75a7b9c15c17f3352f1b50ad88966e7070 (patch) | |
tree | b63038e521d6d685160725e55168796f7f035179 /rpc/api/api.go | |
parent | c6c443385b3e9998d3090785e4287e3836c70219 (diff) | |
download | dexon-87b62f75a7b9c15c17f3352f1b50ad88966e7070.tar.gz dexon-87b62f75a7b9c15c17f3352f1b50ad88966e7070.tar.zst dexon-87b62f75a7b9c15c17f3352f1b50ad88966e7070.zip |
added txpool 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 28b824658..e870ec58e 100644 --- a/rpc/api/api.go +++ b/rpc/api/api.go @@ -13,6 +13,7 @@ const ( MergedApiName = "merged" MinerApiName = "miner" NetApiName = "net" + txPoolApiName = "txpool" PersonalApiName = "personal" Web3ApiName = "web3" ) @@ -20,7 +21,7 @@ const ( var ( // List with all API's which are offered over the IPC interface by default DefaultIpcApis = strings.Join([]string{ - AdminApiName, EthApiName, DebugApiName, MinerApiName, NetApiName, PersonalApiName, Web3ApiName, + AdminApiName, EthApiName, DebugApiName, MinerApiName, NetApiName, txPoolApiName, PersonalApiName, Web3ApiName, }, ",") ) |