File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,15 @@ Removal of Priority Estimation
53
53
54
54
- Estimation of "priority" needed for a transaction to be included within a target
55
55
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
57
57
changed to no longer save these priority estimates. It will automatically be
58
58
converted to the new format which is not readable by prior versions of the
59
59
software.
60
60
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
+
61
65
0.14.0 Change log
62
66
=================
63
67
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 1000000;
125
125
/* * Additional block download timeout per parallel downloading peer (i.e. 5 min) */
126
126
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000 ;
127
127
128
- static const unsigned int DEFAULT_LIMITFREERELAY = 15 ;
128
+ static const unsigned int DEFAULT_LIMITFREERELAY = 0 ;
129
129
static const bool DEFAULT_RELAYPRIORITY = true ;
130
130
static const int64_t DEFAULT_MAX_TIP_AGE = 24 * 60 * 60 ;
131
131
You can’t perform that action at this time.
0 commit comments