mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
cmd/lncli: add p2tr address type to account import
This commit is contained in:
parent
bc5638428e
commit
828ce07ca5
1 changed files with 3 additions and 1 deletions
|
@ -93,9 +93,11 @@ func parseAddrType(addrTypeStr string) (walletrpc.AddressType, error) {
|
|||
return walletrpc.AddressType_NESTED_WITNESS_PUBKEY_HASH, nil
|
||||
case "np2wkh-p2wkh":
|
||||
return walletrpc.AddressType_HYBRID_NESTED_WITNESS_PUBKEY_HASH, nil
|
||||
case "p2tr":
|
||||
return walletrpc.AddressType_TAPROOT_PUBKEY, nil
|
||||
default:
|
||||
return 0, errors.New("invalid address type, supported address " +
|
||||
"types are: p2wkh, np2wkh, and np2wkh-p2wkh")
|
||||
"types are: p2wkh, p2tr, np2wkh, and np2wkh-p2wkh")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue