aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2016-03-03 04:23:47 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-03-03 04:23:47 +0800
commit41f35d7913ffc458873c17463d5780d0fa612010 (patch)
treee5b9f34d0397160b8becbce05cadf4ac3ce350ba /rpc
parent5adc461d58a21f52b3a9e7787732005a46b63e65 (diff)
parent789b9a9f16382f8d8e0dc87ce9a1a23dfee3335d (diff)
downloaddexon-41f35d7913ffc458873c17463d5780d0fa612010.tar
dexon-41f35d7913ffc458873c17463d5780d0fa612010.tar.gz
dexon-41f35d7913ffc458873c17463d5780d0fa612010.tar.bz2
dexon-41f35d7913ffc458873c17463d5780d0fa612010.tar.lz
dexon-41f35d7913ffc458873c17463d5780d0fa612010.tar.xz
dexon-41f35d7913ffc458873c17463d5780d0fa612010.tar.zst
dexon-41f35d7913ffc458873c17463d5780d0fa612010.zip
Merge pull request #2280 from bas-vk/js-cleanup
console: cleanup old autocompletations relics
Diffstat (limited to 'rpc')
-rw-r--r--rpc/doc.go126
-rw-r--r--rpc/javascript.go46
2 files changed, 4 insertions, 168 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",
- },
- }
-)
diff --git a/rpc/javascript.go b/rpc/javascript.go
index 4c0ac5354..72290a2a6 100644
--- a/rpc/javascript.go
+++ b/rpc/javascript.go
@@ -22,7 +22,6 @@ var (
"personal": Personal_JS,
"txpool": TxPool_JS,
"admin": Admin_JS,
- "db": Db_JS,
"eth": Eth_JS,
"miner": Miner_JS,
"debug": Debug_JS,
@@ -118,12 +117,6 @@ web3._extend({
params: 2
}),
new web3._extend.Method({
- name: 'verbosity',
- call: 'admin_verbosity',
- params: 1,
- inputFormatter: [web3._extend.utils.fromDecimal]
- }),
- new web3._extend.Method({
name: 'setSolc',
call: 'admin_setSolc',
params: 1
@@ -217,18 +210,6 @@ web3._extend({
});
`
-const Db_JS = `
-web3._extend({
- property: 'db',
- methods:
- [
- ],
- properties:
- [
- ]
-});
-`
-
const Eth_JS = `
web3._extend({
property: 'eth',
@@ -278,14 +259,7 @@ web3._extend({
const Net_JS = `
web3._extend({
property: 'net',
- methods:
- [
- new web3._extend.Method({
- name: 'addPeer',
- call: 'net_addPeer',
- params: 1
- })
- ],
+ methods: [],
properties:
[
new web3._extend.Property({
@@ -413,9 +387,7 @@ web3._extend({
params: 4
})
],
- properties:
- [
- ]
+ properties: []
});
`
@@ -469,24 +441,14 @@ web3._extend({
inputFormatter: [web3._extend.formatters.inputDefaultBlockNumberFormatter]
})
],
- properties:
- [
- new web3._extend.Property({
- name: 'hashrate',
- getter: 'miner_hashrate',
- outputFormatter: web3._extend.utils.toDecimal
- })
- ]
+ properties: []
});
`
const Shh_JS = `
web3._extend({
property: 'shh',
- methods:
- [
-
- ],
+ methods: [],
properties:
[
new web3._extend.Property({