[trivial] New DEFAULT_MIN_RELAY_TX_FEE = 1000

This commit is contained in:
MarcoFalke
2015-10-27 17:21:43 +01:00
parent 5f46a7d068
commit 536766c903
3 changed files with 4 additions and 2 deletions

View File

@@ -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);