cmd/lncli: remove p2pkh as an option for the new address command

This commit is contained in:
Olaoluwa Osuntokun 2018-02-17 15:41:34 -08:00
parent 1669e3d5ec
commit f2192f1b90
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21
1 changed files with 3 additions and 6 deletions

View File

@ -91,9 +91,8 @@ var newAddressCommand = cli.Command{
ArgsUsage: "address-type",
Description: `
Generate a wallet new address. Address-types has to be one of:
- p2wkh: Push to witness key hash
- np2wkh: Push to nested witness key hash
- p2pkh: Push to public key hash (can't be used to fund channels)`,
- p2wkh: Pay to witness key hash
- np2wkh: Pay to nested witness key hash`,
Action: actionDecorator(newAddress),
}
@ -111,11 +110,9 @@ func newAddress(ctx *cli.Context) error {
addrType = lnrpc.NewAddressRequest_WITNESS_PUBKEY_HASH
case "np2wkh":
addrType = lnrpc.NewAddressRequest_NESTED_PUBKEY_HASH
case "p2pkh":
addrType = lnrpc.NewAddressRequest_PUBKEY_HASH
default:
return fmt.Errorf("invalid address type %v, support address type "+
"are: p2wkh, np2wkh, p2pkh", stringAddrType)
"are: p2wkh and np2wkh", stringAddrType)
}
ctxb := context.Background()