diff options
| author | MarcoFalke <[email protected]> | 2019-12-27 11:29:03 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-01-23 10:20:26 -0500 |
| commit | fa9dec7c395897e8dbbb6de7a16ec5185a609d41 (patch) | |
| tree | c92a727f2a95209a041eebcc4770a787dd86a9e7 /src/rpc/rawtransaction.cpp | |
| parent | doc: Fix syntax error (trailing square bracket) in walletprocesspsbt (diff) | |
| download | discoin-fa9dec7c395897e8dbbb6de7a16ec5185a609d41.tar.xz discoin-fa9dec7c395897e8dbbb6de7a16ec5185a609d41.zip | |
doc: Fix syntax error (trailing square bracket) in finalizepsbt
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 5be7acce1..7b5f0d952 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1276,11 +1276,10 @@ UniValue finalizepsbt(const JSONRPCRequest& request) " extract and return the complete transaction in normal network serialization instead of the PSBT."}, }, RPCResult{ - "{\n" - " \"psbt\" : \"value\", (string) The base64-encoded partially signed transaction if not extracted\n" - " \"hex\" : \"value\", (string) The hex-encoded network transaction if extracted\n" - " \"complete\" : true|false, (boolean) If the transaction has a complete set of signatures\n" - " ]\n" + "{ (json object)\n" + " \"psbt\" : \"str\", (string) The base64-encoded partially signed transaction if not extracted\n" + " \"hex\" : \"hex\", (string) The hex-encoded network transaction if extracted\n" + " \"complete\" : true|false, (boolean) If the transaction has a complete set of signatures\n" "}\n" }, RPCExamples{ |