aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2014-03-11 11:20:07 -0400
committerGavin Andresen <[email protected]>2014-03-11 11:20:07 -0400
commit669264c176da0bb46465596b626353af348047bf (patch)
treef286e417bd951e15b9ec899bccc06b23936f94fc /src/main.cpp
parentMerge pull request #3696 (diff)
parentMake mining fee policy match relay fee policy. (diff)
downloaddiscoin-669264c176da0bb46465596b626353af348047bf.tar.xz
discoin-669264c176da0bb46465596b626353af348047bf.zip
Merge branch 'match_relay_fee' of git://github.com/mikehearn/bitcoin
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9fdd76101..5f50e0578 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