From a20563899d06f105d589d24c6b233aa8f7d72c33 Mon Sep 17 00:00:00 2001 From: Block Mechanic Date: Tue, 27 Sep 2022 20:16:27 +0200 Subject: [PATCH] Update transaction.cpp --- src/node/transaction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/transaction.cpp b/src/node/transaction.cpp index 05cb544..7a8af2a 100644 --- a/src/node/transaction.cpp +++ b/src/node/transaction.cpp @@ -58,9 +58,9 @@ TransactionError BroadcastTransaction(NodeContext& node, const CTransactionRef t if (!AcceptToMemoryPool(*node.mempool, state, tx, nullptr /* plTxnReplaced */, false /* bypass_limits */, /* test_accept */ true, &fee)) { return HandleATMPError(state, err_string); - } else if (fee > max_tx_fee) { + }/* else if (fee > max_tx_fee) { return TransactionError::MAX_FEE_EXCEEDED; - } + }*/ } // Try to submit the transaction to the mempool. if (!AcceptToMemoryPool(*node.mempool, state, tx,