Merge pull request #4635 from githorray/patch-1

remove lncli bash completion for unsupported address type p2pkh
This commit is contained in:
Conner Fromknecht 2020-10-29 12:47:11 -07:00 committed by GitHub
commit 165212d965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,7 +17,7 @@ _lncli() {
case "$prev" in
# example of further completion
newaddress)
COMPREPLY=( $( compgen -W "p2wkh np2wkh p2pkh" -- "$cur" ) )
COMPREPLY=( $( compgen -W "p2wkh np2wkh" -- "$cur" ) )
return 0
;;
esac