Skip to content

Commit fa7cc5a

Browse files
author
MarcoFalke
committed
Set DEFAULT_LIMITFREERELAY = 0 kB/minute
1 parent 0a6d48d commit fa7cc5a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

doc/release-notes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,15 @@ Removal of Priority Estimation
5353

5454
- Estimation of "priority" needed for a transaction to be included within a target
5555
number of blocks has been removed. The rpc calls are deprecated and will either
56-
return -1 or 1e24 appropriately. The format for fee_estimates.dat has also
56+
return -1 or 1e24 appropriately. The format for `fee_estimates.dat` has also
5757
changed to no longer save these priority estimates. It will automatically be
5858
converted to the new format which is not readable by prior versions of the
5959
software.
6060

61+
- The concept of "priority" transactions is planned to be removed in the next
62+
major version. To prepare for this, the default for the rate limit of priority
63+
transactions (`-limitfreerelay`) has been set to `0` kB/minute.
64+
6165
0.14.0 Change log
6266
=================
6367

src/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 1000000;
125125
/** Additional block download timeout per parallel downloading peer (i.e. 5 min) */
126126
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000;
127127

128-
static const unsigned int DEFAULT_LIMITFREERELAY = 15;
128+
static const unsigned int DEFAULT_LIMITFREERELAY = 0;
129129
static const bool DEFAULT_RELAYPRIORITY = true;
130130
static const int64_t DEFAULT_MAX_TIP_AGE = 24 * 60 * 60;
131131

0 commit comments

Comments
 (0)