From 2ab56214ca1e99448893a08b70a8050e45bc6015 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 14 Oct 2019 21:44:33 +0200 Subject: [PATCH] json-rpc: Fix spacing issue in error report There was a non-breakable space and a missing space in the error message for missing utxo params. --- common/wallet_tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/wallet_tx.c b/common/wallet_tx.c index 74921ff65..90c7bc2e7 100644 --- a/common/wallet_tx.c +++ b/common/wallet_tx.c @@ -97,9 +97,9 @@ struct command_result *param_utxos(struct command *cmd, " 'txid:output_index'."); if (tal_count(*utxos) == 0) return command_fail(cmd, JSONRPC2_INVALID_PARAMS, - "No matching utxo was found from the wallet." + "No matching utxo was found from the wallet. " "You can get a list of the wallet utxos with" - " the `listfunds` RPC call."); + " the `listfunds` RPC call."); return NULL; }