diff options
author | Matt Corallo <git@bluematt.me> | 2015-10-13 01:06:59 -0700 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2015-10-13 01:39:38 -0700 |
commit | 9e93640be6c49fa1505ba5c5df8c89210da5a6e4 (patch) | |
tree | e6864d5d559b5dc298fb227c97dcc2ebef807ada /src/main.cpp | |
parent | 074cb155c2f01ba6ddc555c01943fc20c46c0b46 (diff) |
Drop minRelayTxFee to 1000
There is no exact science to setting this parameter, but 5000
(just over 1 US cent at the time of writing) is higher than the
cost to relay a transaction around the network (the new benchmark
due to mempool limiting).
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 f379ea46e2..31b3c21143 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(5000); +CFeeRate minRelayTxFee = CFeeRate(1000); CTxMemPool mempool(::minRelayTxFee); |