diff options
| author | Jon Atack <[email protected]> | 2019-12-10 19:42:59 +0100 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2019-12-10 19:48:53 +0100 |
| commit | 7e8b4de0591437e5a964e458c024eacfd013887d (patch) | |
| tree | 2e3b5fc3f878b7dd957c502ef128a85270d1115e | |
| parent | Merge #17502: test: add unit test for non-standard bare multisig txs (diff) | |
| download | discoin-7e8b4de0591437e5a964e458c024eacfd013887d.tar.xz discoin-7e8b4de0591437e5a964e458c024eacfd013887d.zip | |
rpc: add missing newline in analyzepsbt rpcresult
follow-up to 638e40c
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 6a02984a0..3ffeee73d 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -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" " \"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" - " \"error\" : \"error\" (string) Error message if there is one" + " \"error\" : \"error\" (string) Error message if there is one\n" "}\n" }, RPCExamples { |