|
|
|
@ -17,13 +17,6 @@ _bitcoin_rpc() {
|
|
|
|
|
$bitcoin_cli "${rpcargs[@]}" "$@"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Add wallet accounts to COMPREPLY
|
|
|
|
|
_bitcoin_accounts() {
|
|
|
|
|
local accounts
|
|
|
|
|
accounts=$(_bitcoin_rpc listaccounts | awk -F '"' '{ print $2 }')
|
|
|
|
|
COMPREPLY=( "${COMPREPLY[@]}" $( compgen -W "$accounts" -- "$cur" ) )
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_bitcoin_cli() {
|
|
|
|
|
local cur prev words=() cword
|
|
|
|
|
local bitcoin_cli
|
|
|
|
@ -60,10 +53,9 @@ _bitcoin_cli() {
|
|
|
|
|
if ((cword > 3)); then
|
|
|
|
|
case ${words[cword-3]} in
|
|
|
|
|
addmultisigaddress)
|
|
|
|
|
_bitcoin_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 @@ _bitcoin_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)
|
|
|
|
|
_bitcoin_accounts
|
|
|
|
|
return 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
@ -96,12 +84,11 @@ _bitcoin_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)
|
|
|
|
|
_bitcoin_accounts
|
|
|
|
|
getbalance|getnewaddress|listtransactions|sendmany)
|
|
|
|
|
return 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|