diff options
| author | Gregory Sanders <[email protected]> | 2019-01-24 16:25:28 -0500 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2019-02-04 10:26:46 -0500 |
| commit | 851380ce177bccf0d608fa8017a383f2ac273dc1 (patch) | |
| tree | c66f852652daf3f0ca6bcab9463f09a7bed058a8 /contrib | |
| parent | Merge #15322: wallet: Add missing cs_db lock (diff) | |
| download | discoin-851380ce177bccf0d608fa8017a383f2ac273dc1.tar.xz discoin-851380ce177bccf0d608fa8017a383f2ac273dc1.zip | |
remove deprecated mentions of signrawtransaction from fundraw help
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/bitcoin-cli.bash-completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/bitcoin-cli.bash-completion b/contrib/bitcoin-cli.bash-completion index 732981fe7..f4cac8418 100644 --- a/contrib/bitcoin-cli.bash-completion +++ b/contrib/bitcoin-cli.bash-completion @@ -50,7 +50,7 @@ _bitcoin_cli() { COMPREPLY=( $( compgen -W "true false" -- "$cur" ) ) return 0 ;; - signrawtransaction) + signrawtransactionwithkey|signrawtransactionwithwallet) COMPREPLY=( $( compgen -W "ALL NONE SINGLE ALL|ANYONECANPAY NONE|ANYONECANPAY SINGLE|ANYONECANPAY" -- "$cur" ) ) return 0 ;; |