Browse Source

Merge #9179: Set DEFAULT_LIMITFREERELAY = 0 kB/minute

fa7cc5a Set DEFAULT_LIMITFREERELAY = 0 kB/minute (MarcoFalke)
0.14
Wladimir J. van der Laan 8 years ago
parent
commit
b9a87b459d
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 6
      doc/release-notes.md
  2. 2
      src/main.h

6
doc/release-notes.md

@ -53,11 +53,15 @@ Removal of Priority Estimation
- Estimation of "priority" needed for a transaction to be included within a target - Estimation of "priority" needed for a transaction to be included within a target
number of blocks has been removed. The rpc calls are deprecated and will either number of blocks has been removed. The rpc calls are deprecated and will either
return -1 or 1e24 appropriately. The format for fee_estimates.dat has also return -1 or 1e24 appropriately. The format for `fee_estimates.dat` has also
changed to no longer save these priority estimates. It will automatically be changed to no longer save these priority estimates. It will automatically be
converted to the new format which is not readable by prior versions of the converted to the new format which is not readable by prior versions of the
software. software.
- The concept of "priority" transactions is planned to be removed in the next
major version. To prepare for this, the default for the rate limit of priority
transactions (`-limitfreerelay`) has been set to `0` kB/minute.
0.14.0 Change log 0.14.0 Change log
================= =================

2
src/main.h

@ -125,7 +125,7 @@ static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 1000000;
/** Additional block download timeout per parallel downloading peer (i.e. 5 min) */ /** Additional block download timeout per parallel downloading peer (i.e. 5 min) */
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000; static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000;
static const unsigned int DEFAULT_LIMITFREERELAY = 15; static const unsigned int DEFAULT_LIMITFREERELAY = 0;
static const bool DEFAULT_RELAYPRIORITY = true; static const bool DEFAULT_RELAYPRIORITY = true;
static const int64_t DEFAULT_MAX_TIP_AGE = 24 * 60 * 60; static const int64_t DEFAULT_MAX_TIP_AGE = 24 * 60 * 60;

Loading…
Cancel
Save