diff options
| author | MarcoFalke <[email protected]> | 2015-10-27 17:21:43 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2015-11-09 21:00:16 +0100 |
| commit | 536766c903c8dc84e6709e4bd387aad5acf8e433 (patch) | |
| tree | 4534cad8d5959d8791f1ed016f9717e787e7ab7e /src/main.cpp | |
| parent | transaction_tests: Be more strict checking dust (diff) | |
| download | discoin-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.cpp | 2 |
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); |