Skip to content

Commit

Permalink
Merge pull request #112 from BlockMechanic/segwit
Browse files Browse the repository at this point in the history
Update transaction.cpp
  • Loading branch information
BlockMechanic authored Sep 27, 2022
2 parents f1cfe31 + a205638 commit baf6943
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node/transaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit baf6943

Please sign in to comment.