From 37ef9bb46527eb7620cdc8f8302d3248410c95a2 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 30 Oct 2019 11:53:20 +0100 Subject: [PATCH] Merge #17282: contrib: remove accounts from bash completion dd94cc46e4377b14515be24894fd1cb42e233151 contrib: remove accounts from bash completion (fanquake) Pull request description: Also removes `setgenerate`. ACKs for top commit: jonasschnelli: utACK dd94cc46e4377b14515be24894fd1cb42e233151 Tree-SHA512: 218aa06841f4a347bb083c7f408c07fe80df7a30f7ce7a1126ec95971a9b66aff7c3c049d269da2c15f629bbde80e8c303bf6562bd5c1a36a6f6fd61ce9133e2 --- contrib/dash-cli.bash-completion | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/contrib/dash-cli.bash-completion b/contrib/dash-cli.bash-completion index 7b67801d90..c2353fb34a 100644 --- a/contrib/dash-cli.bash-completion +++ b/contrib/dash-cli.bash-completion @@ -17,13 +17,6 @@ _dash_rpc() { $dash_cli "${rpcargs[@]}" "$@" } -# Add wallet accounts to COMPREPLY -_dash_accounts() { - local accounts - accounts=$(_dash_rpc listaccounts | awk -F '"' '{ print $2 }') - COMPREPLY=( "${COMPREPLY[@]}" $( compgen -W "$accounts" -- "$cur" ) ) -} - _dash_cli() { local cur prev words=() cword local dash_cli @@ -60,10 +53,9 @@ _dash_cli() { if ((cword > 3)); then case ${words[cword-3]} in addmultisigaddress) - _dash_accounts return 0 ;; - getbalance|gettxout|importaddress|importpubkey|importprivkey|listreceivedbyaccount|listreceivedbyaddress|listsinceblock) + getbalance|gettxout|importaddress|importpubkey|importprivkey|listreceivedbyaddress|listsinceblock) COMPREPLY=( $( compgen -W "true false" -- "$cur" ) ) return 0 ;; @@ -80,14 +72,10 @@ _dash_cli() { COMPREPLY=( $( compgen -W "add remove" -- "$cur" ) ) return 0 ;; - fundrawtransaction|getblock|getblockheader|getmempoolancestors|getmempooldescendants|getrawtransaction|gettransaction|listaccounts|listreceivedbyaccount|listreceivedbyaddress|sendrawtransaction) + fundrawtransaction|getblock|getblockheader|getmempoolancestors|getmempooldescendants|getrawtransaction|gettransaction|listreceivedbyaddress|sendrawtransaction) COMPREPLY=( $( compgen -W "true false" -- "$cur" ) ) return 0 ;; - move|setaccount) - _dash_accounts - return 0 - ;; esac fi @@ -96,12 +84,11 @@ _dash_cli() { _filedir return 0 ;; - getaddednodeinfo|getrawmempool|lockunspent|setgenerate) + getaddednodeinfo|getrawmempool|lockunspent) COMPREPLY=( $( compgen -W "true false" -- "$cur" ) ) return 0 ;; - getaccountaddress|getaddressesbyaccount|getbalance|getnewaddress|getreceivedbyaccount|listtransactions|move|sendfrom|sendmany) - _dash_accounts + getbalance|getnewaddress|listtransactions|sendmany) return 0 ;; esac