aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2015-10-27 17:21:43 +0100
committerMarcoFalke <falke.marco@gmail.com>2015-11-09 21:00:16 +0100
commit536766c903c8dc84e6709e4bd387aad5acf8e433 (patch)
tree4534cad8d5959d8791f1ed016f9717e787e7ab7e /src/main.cpp
parent5f46a7d0689ff1457b016fdf0de89e5153058864 (diff)
downloadbitcoin-536766c903c8dc84e6709e4bd387aad5acf8e433.tar.xz
[trivial] New DEFAULT_MIN_RELAY_TX_FEE = 1000
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 9016fe42a0..9212b309da 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, mining and transaction creation) */
-CFeeRate minRelayTxFee = CFeeRate(1000);
+CFeeRate minRelayTxFee = CFeeRate(DEFAULT_MIN_RELAY_TX_FEE);
CTxMemPool mempool(::minRelayTxFee);