diff options
| author | MarcoFalke <[email protected]> | 2019-12-27 11:32:13 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-01-23 10:19:51 -0500 |
| commit | faff5a60ed328d4c5fdef253e8935a351cb57bd0 (patch) | |
| tree | f4dfbf99165feb083ebabb8933aa04ec4913733c /src | |
| parent | doc: Add missing "optional" to "long" estimaterawfee RPC help (diff) | |
| download | discoin-faff5a60ed328d4c5fdef253e8935a351cb57bd0.tar.xz discoin-faff5a60ed328d4c5fdef253e8935a351cb57bd0.zip | |
doc: Fix syntax error (trailing square bracket) in walletprocesspsbt
Diffstat (limited to 'src')
| -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 05719b475..cacb44a19 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{ |