From 0d3a8ad6dd0827c234811bcfeadbbf2bc16094da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Fri, 31 Jul 2015 12:46:16 +0300 Subject: [PATCH] rpc/api: add missing autocomplete commands --- rpc/api/utils.go | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/rpc/api/utils.go b/rpc/api/utils.go index a791dcd65..50c607d16 100644 --- a/rpc/api/utils.go +++ b/rpc/api/utils.go @@ -32,16 +32,22 @@ var ( AutoCompletion = map[string][]string{ "admin": []string{ "addPeer", - "peers", - "nodeInfo", - "exportChain", - "importChain", - "verbosity", "chainSyncStatus", - "setSolc", "datadir", + "exportChain", + "getContractInfo", + "importChain", + "nodeInfo", + "peers", + "register", + "registerUrl", + "setSolc", + "sleepBlocks", + "startNatSpec", "startRPC", + "stopNatSpec", "stopRPC", + "verbosity", }, "db": []string{ "getString", @@ -97,6 +103,7 @@ var ( "miner": []string{ "hashrate", "makeDAG", + "setEtherbase", "setExtra", "setGasPrice", "startAutoDAG",