diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-12-27 11:32:13 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-01-23 10:19:51 -0500 |
commit | faff5a60ed328d4c5fdef253e8935a351cb57bd0 (patch) | |
tree | f4dfbf99165feb083ebabb8933aa04ec4913733c | |
parent | fa0545901daad32b09511cc61c4af1400c48088d (diff) |
doc: Fix syntax error (trailing square bracket) in walletprocesspsbt
-rw-r--r-- | src/wallet/rpcwallet.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 05719b4754..cacb44a192 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -4076,10 +4076,9 @@ UniValue walletprocesspsbt(const JSONRPCRequest& request) {"bip32derivs", RPCArg::Type::BOOL, /* default */ "false", "If true, includes the BIP 32 derivation paths for public keys if we know them"}, }, RPCResult{ - "{\n" - " \"psbt\" : \"value\", (string) The base64-encoded partially signed transaction\n" + "{ (json object)\n" + " \"psbt\" : \"str\", (string) The base64-encoded partially signed transaction\n" " \"complete\" : true|false, (boolean) If the transaction has a complete set of signatures\n" - " ]\n" "}\n" }, RPCExamples{ |