aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2015-10-27 17:21:43 +0100
committerMarcoFalke <[email protected]>2015-11-09 21:00:16 +0100
commit536766c903c8dc84e6709e4bd387aad5acf8e433 (patch)
tree4534cad8d5959d8791f1ed016f9717e787e7ab7e /src/main.cpp
parenttransaction_tests: Be more strict checking dust (diff)
downloaddiscoin-536766c903c8dc84e6709e4bd387aad5acf8e433.tar.xz
discoin-536766c903c8dc84e6709e4bd387aad5acf8e433.zip
[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 9016fe42a..9212b309d 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);