aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-10-09 19:36:32 +0200
committerWladimir J. van der Laan <[email protected]>2015-10-09 19:36:32 +0200
commit28e3249e53b8ef7516636df0f1406466a513095d (patch)
treeba38d3530f653d308dab60cf398757c56e8d8778
parentMerge pull request #6789 (diff)
downloaddiscoin-28e3249e53b8ef7516636df0f1406466a513095d.tar.xz
discoin-28e3249e53b8ef7516636df0f1406466a513095d.zip
Bump minrelaytxfee default
To bridge the time until a dynamic method for determining this fee is merged. This is especially aimed at the stable releases (0.10, 0.11) because full mempool limiting, as will be in 0.12, is too invasive and risky to backport.
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 5cfb05b0d..baad7fc05 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(1000);
+CFeeRate minRelayTxFee = CFeeRate(5000);
CTxMemPool mempool(::minRelayTxFee);