diff options
author | Mike Hearn <mike@plan99.net> | 2014-03-10 18:59:12 +0100 |
---|---|---|
committer | Mike Hearn <mike@plan99.net> | 2014-03-10 19:17:18 +0100 |
commit | 037b4f1485404a69f96ac6c448a97d21315c8663 (patch) | |
tree | fecba95feb0e545766945a82f172960d802815d6 /src/main.cpp | |
parent | a63f8b7b36e39722024a0ba061ca214f00a8f1bd (diff) |
Make mining fee policy match relay fee policy.
This resolves a case in which a mismatch could be used to bloat up the
mempool by sending transactions that pay enough fee to relay, but not
to be mined, with the default policies.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2d8ac0c9bc..590ddbf7a9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -51,7 +51,7 @@ unsigned int nCoinCacheSize = 5000; /** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */ int64_t CTransaction::nMinTxFee = 10000; // Override with -mintxfee -/** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */ +/** Fees smaller than this (in satoshi) are considered zero fee (for relaying and mining) */ int64_t CTransaction::nMinRelayTxFee = 1000; static CMedianFilter<int> cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have |