mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 20:32:35 -03:00
Merge #17714: rpc: add missing newline in analyzepsbt RPCResult
7e8b4de059
rpc: add missing newline in analyzepsbt rpcresult (Jon Atack) Pull request description: follow-up to638e40c
in #17524 before ``` "error" : "error" (string) Error message if there is one} ``` after ``` "error" : "error" (string) Error message if there is one } ``` ACKs for top commit: practicalswift: ACK7e8b4de059
promag: ACK7e8b4de059
. emilengler: ACK7e8b4de
Tree-SHA512: 4cdd365e39d15b7925ea277b7ff3e9bfdc22f5845aa41ca547343b4dabdf319579843a1c7f11fb0edd6abbc31bae2ec96236b83e84f8872bd662848723725e4c
This commit is contained in:
commit
f1d3d3430e
1 changed files with 1 additions and 1 deletions
|
@ -1674,7 +1674,7 @@ UniValue analyzepsbt(const JSONRPCRequest& request)
|
||||||
" \"estimated_feerate\" : feerate (numeric, optional) Estimated feerate of the final signed transaction in " + CURRENCY_UNIT + "/kB. Shown only if all UTXO slots in the PSBT have been filled.\n"
|
" \"estimated_feerate\" : feerate (numeric, optional) Estimated feerate of the final signed transaction in " + CURRENCY_UNIT + "/kB. Shown only if all UTXO slots in the PSBT have been filled.\n"
|
||||||
" \"fee\" : fee (numeric, optional) The transaction fee paid. Shown only if all UTXO slots in the PSBT have been filled.\n"
|
" \"fee\" : fee (numeric, optional) The transaction fee paid. Shown only if all UTXO slots in the PSBT have been filled.\n"
|
||||||
" \"next\" : \"role\" (string) Role of the next person that this psbt needs to go to\n"
|
" \"next\" : \"role\" (string) Role of the next person that this psbt needs to go to\n"
|
||||||
" \"error\" : \"error\" (string) Error message if there is one"
|
" \"error\" : \"error\" (string) Error message if there is one\n"
|
||||||
"}\n"
|
"}\n"
|
||||||
},
|
},
|
||||||
RPCExamples {
|
RPCExamples {
|
||||||
|
|
Loading…
Reference in a new issue