From 7dd61aede6c7456ee88b737474e5422bf20df142 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Sun, 8 Sep 2019 20:02:42 +0200 Subject: [PATCH] make low fee message less dramatic --- src/currency_core/tx_pool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/currency_core/tx_pool.cpp b/src/currency_core/tx_pool.cpp index 6803ac16..b8c56fa4 100644 --- a/src/currency_core/tx_pool.cpp +++ b/src/currency_core/tx_pool.cpp @@ -164,7 +164,7 @@ namespace currency else { // this tx has no fee - LOG_ERROR("Transaction with id= " << id << " has too small fee: " << tx_fee << ", expected fee: " << m_blockchain.get_core_runtime_config().tx_pool_min_fee); + LOG_PRINT_RED_L0("Transaction with id= " << id << " has too small fee: " << tx_fee << ", expected fee: " << m_blockchain.get_core_runtime_config().tx_pool_min_fee); tvc.m_verification_failed = false; tvc.m_should_be_relayed = false; tvc.m_added_to_pool = false;