bcli: don't log failed sendrawtransaction attempts twice

They are already logged both in bcli, and in lightningd.
This just adds a lot of noise to the logs. We keep successed attempts
though for the tests.

Signed-off-by: Antoine Poinsot <darosior@protonmail.com>
This commit is contained in:
Antoine Poinsot 2020-04-28 11:19:53 +02:00 committed by neil saitug
parent 678591d851
commit 3fc77730be

View File

@ -625,6 +625,8 @@ static struct command_result *process_sendrawtransaction(struct bitcoin_cli *bcl
{ {
struct json_stream *response; struct json_stream *response;
/* This is useful for functional tests. */
if (*bcli->exitstatus == 0)
plugin_log(bcli->cmd->plugin, LOG_DBG, "sendrawtx exit %i (%s)", plugin_log(bcli->cmd->plugin, LOG_DBG, "sendrawtx exit %i (%s)",
*bcli->exitstatus, bcli_args(bcli)); *bcli->exitstatus, bcli_args(bcli));