diff options
| author | MarcoFalke <[email protected]> | 2020-03-13 15:44:11 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-03-13 15:35:41 -0400 |
| commit | fadd99f61032c0b75ad9b198eb5d8e307b0518ee (patch) | |
| tree | 88780ad4f8059c80a616c3b52555c272166aef13 /src/wallet | |
| parent | Merge #18228: test: Add missing syncwithvalidationinterfacequeue (diff) | |
| download | discoin-fadd99f61032c0b75ad9b198eb5d8e307b0518ee.tar.xz discoin-fadd99f61032c0b75ad9b198eb5d8e307b0518ee.zip | |
rpc: Add missing newline in RPCResult description
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 24df94740..56083b6c9 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2851,9 +2851,9 @@ static UniValue listunspent(const JSONRPCRequest& request) {RPCResult::Type::BOOL, "solvable", "Whether we know how to spend this output, ignoring the lack of keys"}, {RPCResult::Type::BOOL, "reused", "(only present if avoid_reuse is set) Whether this output is reused/dirty (sent to an address that was previously spent from)"}, {RPCResult::Type::STR, "desc", "(only when solvable) A descriptor for spending this output"}, - {RPCResult::Type::BOOL, "safe", "Whether this output is considered safe to spend. Unconfirmed transactions" - " from outside keys and unconfirmed replacement transactions are considered unsafe\n" - "and are not eligible for spending by fundrawtransaction and sendtoaddress."}, + {RPCResult::Type::BOOL, "safe", "Whether this output is considered safe to spend. Unconfirmed transactions\n" + "from outside keys and unconfirmed replacement transactions are considered unsafe\n" + "and are not eligible for spending by fundrawtransaction and sendtoaddress."}, }}, } }, |