diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-10-27 17:21:43 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-11-09 21:00:16 +0100 |
commit | 536766c903c8dc84e6709e4bd387aad5acf8e433 (patch) | |
tree | 4534cad8d5959d8791f1ed016f9717e787e7ab7e /src/main.cpp | |
parent | 5f46a7d0689ff1457b016fdf0de89e5153058864 (diff) |
[trivial] New DEFAULT_MIN_RELAY_TX_FEE = 1000
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
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); |