diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-03-22 11:49:58 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-03-23 11:09:34 +0100 |
commit | faf37c217a408114224f91b7ada3fb6ff29b0c0a (patch) | |
tree | f35d2ee047189e31776497a51d5cb3d53afe0376 /src/rpc/rawtransaction.cpp | |
parent | d6f225f5c9f8382878e6970b707e57838e312f8c (diff) |
rpc: Exclude descriptor when address is excluded
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
-rw-r--r-- | src/rpc/rawtransaction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 1ef531b293..0d1b54adaa 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1121,6 +1121,7 @@ static RPCHelpMan decodepsbt() {RPCResult::Type::OBJ, "scriptPubKey", "", { {RPCResult::Type::STR, "asm", "The asm"}, + {RPCResult::Type::STR, "desc", "Inferred descriptor for the output"}, {RPCResult::Type::STR_HEX, "hex", "The hex"}, {RPCResult::Type::STR, "type", "The type, eg 'pubkeyhash'"}, {RPCResult::Type::STR, "address", /*optional=*/true, "The Bitcoin address (only if a well-defined address exists)"}, |