Skip to content

Commit

Permalink
Revert transaction pool changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptokatz committed May 27, 2021
1 parent a7f2cd3 commit 8c93eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CryptoNoteCore/TransactionPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ namespace CryptoNote

if (height >= parameters::UPGRADE_HEIGHT_V8) {
tvc.m_added_to_pool = true;
tvc.m_should_be_relayed = inputsValid && (fee >= 1000 || isFusionTransaction || isWithdrawalTransaction || ttl.ttl != 0);
tvc.m_should_be_relayed = inputsValid && (fee == 1000 || isFusionTransaction || isWithdrawalTransaction || ttl.ttl != 0);
tvc.m_verification_failed = true;
} else {
tvc.m_added_to_pool = true;
Expand Down

0 comments on commit 8c93eca

Please sign in to comment.