diff options
author | Bas van Kervel <bas@ethdev.com> | 2016-03-02 01:22:26 +0800 |
---|---|---|
committer | Bas van Kervel <bas@ethdev.com> | 2016-03-02 01:27:08 +0800 |
commit | 789b9a9f16382f8d8e0dc87ce9a1a23dfee3335d (patch) | |
tree | 9a9751e4ffbe3a4e036781145c590ba306bf634b /rpc/doc.go | |
parent | 8255afbc756f09c69676d79de4fcefddaa482ee8 (diff) | |
download | dexon-789b9a9f16382f8d8e0dc87ce9a1a23dfee3335d.tar.gz dexon-789b9a9f16382f8d8e0dc87ce9a1a23dfee3335d.tar.zst dexon-789b9a9f16382f8d8e0dc87ce9a1a23dfee3335d.zip |
console: cleanup old autocompletations relics
Diffstat (limited to 'rpc/doc.go')
-rw-r--r-- | rpc/doc.go | 126 |
1 files changed, 0 insertions, 126 deletions
diff --git a/rpc/doc.go b/rpc/doc.go index e8f8f977b..a2506ad58 100644 --- a/rpc/doc.go +++ b/rpc/doc.go @@ -100,129 +100,3 @@ Subscriptions are deleted when: - the connection which was used to create the subscription is closed */ package rpc - -var ( - // Mapping between the different methods each api supports - AutoCompletion = map[string][]string{ - "admin": []string{ - "addPeer", - "datadir", - "enableUserAgent", - "exportChain", - "getContractInfo", - "httpGet", - "importChain", - "nodeInfo", - "peers", - "register", - "registerUrl", - "saveInfo", - "setGlobalRegistrar", - "setHashReg", - "setUrlHint", - "setSolc", - "sleep", - "sleepBlocks", - "startNatSpec", - "startRPC", - "stopNatSpec", - "stopRPC", - "verbosity", - }, - "db": []string{ - "getString", - "putString", - "getHex", - "putHex", - }, - "debug": []string{ - "dumpBlock", - "getBlockRlp", - "metrics", - "printBlock", - "processBlock", - "seedHash", - "setHead", - }, - "eth": []string{ - "accounts", - "blockNumber", - "call", - "contract", - "coinbase", - "compile.lll", - "compile.serpent", - "compile.solidity", - "contract", - "defaultAccount", - "defaultBlock", - "estimateGas", - "filter", - "getBalance", - "getBlock", - "getBlockTransactionCount", - "getBlockUncleCount", - "getCode", - "getNatSpec", - "getCompilers", - "gasPrice", - "getStorageAt", - "getTransaction", - "getTransactionCount", - "getTransactionFromBlock", - "getTransactionReceipt", - "getUncle", - "hashrate", - "mining", - "namereg", - "pendingTransactions", - "resend", - "sendRawTransaction", - "sendTransaction", - "sign", - "syncing", - }, - "miner": []string{ - "hashrate", - "makeDAG", - "setEtherbase", - "setExtra", - "setGasPrice", - "startAutoDAG", - "start", - "stopAutoDAG", - "stop", - }, - "net": []string{ - "peerCount", - "listening", - }, - "personal": []string{ - "listAccounts", - "newAccount", - "unlockAccount", - }, - "shh": []string{ - "post", - "newIdentity", - "hasIdentity", - "newGroup", - "addToGroup", - "filter", - }, - "txpool": []string{ - "status", - }, - "web3": []string{ - "sha3", - "version", - "fromWei", - "toWei", - "toHex", - "toAscii", - "fromAscii", - "toBigNumber", - "isAddress", - }, - } -) |