From fec826b10e4904efc3b1297e9d3b5e5831ebccf9 Mon Sep 17 00:00:00 2001 From: SChernykh Date: Thu, 1 Sep 2022 10:09:23 +0200 Subject: [PATCH] Changed spammy warning to level 5 --- src/block_template.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/block_template.cpp b/src/block_template.cpp index 530303d..2c7c466 100644 --- a/src/block_template.cpp +++ b/src/block_template.cpp @@ -745,7 +745,7 @@ int BlockTemplate::create_miner_tx(const MinerData& data, const std::vector EXTRA_NONCE_SIZE) { if (corrected_extra_nonce_size > EXTRA_NONCE_MAX_SIZE) { - LOGWARN(4, "create_miner_tx: corrected_extra_nonce_size (" << corrected_extra_nonce_size << ") is too large"); + LOGWARN(5, "create_miner_tx: corrected_extra_nonce_size (" << corrected_extra_nonce_size << ") is too large"); return -3; } LOGINFO(4, "increased EXTRA_NONCE from " << EXTRA_NONCE_SIZE << " to " << corrected_extra_nonce_size << " bytes to maintain miner tx weight");