aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2015-10-13 01:06:59 -0700
committerMatt Corallo <git@bluematt.me>2015-10-13 01:39:38 -0700
commit9e93640be6c49fa1505ba5c5df8c89210da5a6e4 (patch)
treee6864d5d559b5dc298fb227c97dcc2ebef807ada /src
parent074cb155c2f01ba6ddc555c01943fc20c46c0b46 (diff)
downloadbitcoin-9e93640be6c49fa1505ba5c5df8c89210da5a6e4.tar.xz
Drop minRelayTxFee to 1000
There is no exact science to setting this parameter, but 5000 (just over 1 US cent at the time of writing) is higher than the cost to relay a transaction around the network (the new benchmark due to mempool limiting).
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index f379ea46e2..31b3c21143 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -75,7 +75,7 @@ uint64_t nPruneTarget = 0;
bool fAlerts = DEFAULT_ALERTS;
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying and mining) */
-CFeeRate minRelayTxFee = CFeeRate(5000);
+CFeeRate minRelayTxFee = CFeeRate(1000);
CTxMemPool mempool(::minRelayTxFee);