Skip to content

Commit fa9dec7

Browse files
author
MarcoFalke
committed
doc: Fix syntax error (trailing square bracket) in finalizepsbt
1 parent faff5a6 commit fa9dec7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/rpc/rawtransaction.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,11 +1276,10 @@ UniValue finalizepsbt(const JSONRPCRequest& request)
12761276
" extract and return the complete transaction in normal network serialization instead of the PSBT."},
12771277
},
12781278
RPCResult{
1279-
"{\n"
1280-
" \"psbt\" : \"value\", (string) The base64-encoded partially signed transaction if not extracted\n"
1281-
" \"hex\" : \"value\", (string) The hex-encoded network transaction if extracted\n"
1282-
" \"complete\" : true|false, (boolean) If the transaction has a complete set of signatures\n"
1283-
" ]\n"
1279+
"{ (json object)\n"
1280+
" \"psbt\" : \"str\", (string) The base64-encoded partially signed transaction if not extracted\n"
1281+
" \"hex\" : \"hex\", (string) The hex-encoded network transaction if extracted\n"
1282+
" \"complete\" : true|false, (boolean) If the transaction has a complete set of signatures\n"
12841283
"}\n"
12851284
},
12861285
RPCExamples{

0 commit comments

Comments
 (0)