@@ -20,49 +20,63 @@ class CFeeRate;
20
20
class CScript ;
21
21
22
22
/* * Default for -blockmaxweight, which controls the range of block weights the mining code will create **/
23
- static const unsigned int DEFAULT_BLOCK_MAX_WEIGHT = MAX_BLOCK_WEIGHT - 4000 ;
23
+ static constexpr unsigned int DEFAULT_BLOCK_MAX_WEIGHT{ MAX_BLOCK_WEIGHT - 4000 } ;
24
24
/* * Default for -blockmintxfee, which sets the minimum feerate for a transaction in blocks created by mining code **/
25
- static const unsigned int DEFAULT_BLOCK_MIN_TX_FEE = 1000 ;
25
+ static constexpr unsigned int DEFAULT_BLOCK_MIN_TX_FEE{ 1000 } ;
26
26
/* * The maximum weight for transactions we're willing to relay/mine */
27
- static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000 ;
27
+ static constexpr unsigned int MAX_STANDARD_TX_WEIGHT{ 400000 } ;
28
28
/* * The minimum non-witness size for transactions we're willing to relay/mine (1 segwit input + 1 P2WPKH output = 82 bytes) */
29
- static const unsigned int MIN_STANDARD_TX_NONWITNESS_SIZE = 82 ;
29
+ static constexpr unsigned int MIN_STANDARD_TX_NONWITNESS_SIZE{ 82 } ;
30
30
/* * Maximum number of signature check operations in an IsStandard() P2SH script */
31
- static const unsigned int MAX_P2SH_SIGOPS = 15 ;
31
+ static constexpr unsigned int MAX_P2SH_SIGOPS{ 15 } ;
32
32
/* * The maximum number of sigops we're willing to relay/mine in a single tx */
33
- static const unsigned int MAX_STANDARD_TX_SIGOPS_COST = MAX_BLOCK_SIGOPS_COST/5 ;
33
+ static constexpr unsigned int MAX_STANDARD_TX_SIGOPS_COST{ MAX_BLOCK_SIGOPS_COST/5 } ;
34
34
/* * Default for -maxmempool, maximum megabytes of mempool memory usage */
35
- static const unsigned int DEFAULT_MAX_MEMPOOL_SIZE = 300 ;
35
+ static constexpr unsigned int DEFAULT_MAX_MEMPOOL_SIZE{ 300 } ;
36
36
/* * Default for -incrementalrelayfee, which sets the minimum feerate increase for mempool limiting or BIP 125 replacement **/
37
- static const unsigned int DEFAULT_INCREMENTAL_RELAY_FEE = 1000 ;
37
+ static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE{ 1000 } ;
38
38
/* * Default for -bytespersigop */
39
- static const unsigned int DEFAULT_BYTES_PER_SIGOP = 20 ;
39
+ static constexpr unsigned int DEFAULT_BYTES_PER_SIGOP{ 20 } ;
40
40
/* * Default for -permitbaremultisig */
41
- static const bool DEFAULT_PERMIT_BAREMULTISIG = true ;
41
+ static constexpr bool DEFAULT_PERMIT_BAREMULTISIG{ true } ;
42
42
/* * The maximum number of witness stack items in a standard P2WSH script */
43
- static const unsigned int MAX_STANDARD_P2WSH_STACK_ITEMS = 100 ;
43
+ static constexpr unsigned int MAX_STANDARD_P2WSH_STACK_ITEMS{ 100 } ;
44
44
/* * The maximum size in bytes of each witness stack item in a standard P2WSH script */
45
- static const unsigned int MAX_STANDARD_P2WSH_STACK_ITEM_SIZE = 80 ;
45
+ static constexpr unsigned int MAX_STANDARD_P2WSH_STACK_ITEM_SIZE{ 80 } ;
46
46
/* * The maximum size in bytes of each witness stack item in a standard BIP 342 script (Taproot, leaf version 0xc0) */
47
- static const unsigned int MAX_STANDARD_TAPSCRIPT_STACK_ITEM_SIZE = 80 ;
47
+ static constexpr unsigned int MAX_STANDARD_TAPSCRIPT_STACK_ITEM_SIZE{ 80 } ;
48
48
/* * The maximum size in bytes of a standard witnessScript */
49
- static const unsigned int MAX_STANDARD_P2WSH_SCRIPT_SIZE = 3600 ;
49
+ static constexpr unsigned int MAX_STANDARD_P2WSH_SCRIPT_SIZE{ 3600 } ;
50
50
/* * The maximum size of a standard ScriptSig */
51
- static const unsigned int MAX_STANDARD_SCRIPTSIG_SIZE = 1650 ;
51
+ static constexpr unsigned int MAX_STANDARD_SCRIPTSIG_SIZE{ 1650 } ;
52
52
/* * Min feerate for defining dust. Historically this has been based on the
53
53
* minRelayTxFee, however changing the dust limit changes which transactions are
54
54
* standard and should be done with care and ideally rarely. It makes sense to
55
55
* only increase the dust limit after prior releases were already not creating
56
56
* outputs below the new threshold */
57
- static const unsigned int DUST_RELAY_TX_FEE = 3000 ;
57
+ static constexpr unsigned int DUST_RELAY_TX_FEE{ 3000 } ;
58
58
/* * Default for -minrelaytxfee, minimum relay fee for transactions */
59
- static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000 ;
59
+ static constexpr unsigned int DEFAULT_MIN_RELAY_TX_FEE{1000 };
60
+ /* * Default for -limitancestorcount, max number of in-mempool ancestors */
61
+ static constexpr unsigned int DEFAULT_ANCESTOR_LIMIT{25 };
62
+ /* * Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */
63
+ static constexpr unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT{101 };
64
+ /* * Default for -limitdescendantcount, max number of in-mempool descendants */
65
+ static constexpr unsigned int DEFAULT_DESCENDANT_LIMIT{25 };
66
+ /* * Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */
67
+ static constexpr unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT{101 };
68
+ /* *
69
+ * An extra transaction can be added to a package, as long as it only has one
70
+ * ancestor and is no larger than this. Not really any reason to make this
71
+ * configurable as it doesn't materially change DoS parameters.
72
+ */
73
+ static constexpr unsigned int EXTRA_DESCENDANT_TX_SIZE_LIMIT{10000 };
60
74
/* *
61
75
* Standard script verification flags that standard transactions will comply
62
76
* with. However scripts violating these flags may still be present in valid
63
77
* blocks and we must accept those blocks.
64
78
*/
65
- static constexpr unsigned int STANDARD_SCRIPT_VERIFY_FLAGS = MANDATORY_SCRIPT_VERIFY_FLAGS |
79
+ static constexpr unsigned int STANDARD_SCRIPT_VERIFY_FLAGS{ MANDATORY_SCRIPT_VERIFY_FLAGS |
66
80
SCRIPT_VERIFY_DERSIG |
67
81
SCRIPT_VERIFY_STRICTENC |
68
82
SCRIPT_VERIFY_MINIMALDATA |
@@ -81,14 +95,14 @@ static constexpr unsigned int STANDARD_SCRIPT_VERIFY_FLAGS = MANDATORY_SCRIPT_VE
81
95
SCRIPT_VERIFY_TAPROOT |
82
96
SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_TAPROOT_VERSION |
83
97
SCRIPT_VERIFY_DISCOURAGE_OP_SUCCESS |
84
- SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_PUBKEYTYPE;
98
+ SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_PUBKEYTYPE} ;
85
99
86
100
/* * For convenience, standard but not mandatory verify flags. */
87
- static constexpr unsigned int STANDARD_NOT_MANDATORY_VERIFY_FLAGS = STANDARD_SCRIPT_VERIFY_FLAGS & ~MANDATORY_SCRIPT_VERIFY_FLAGS;
101
+ static constexpr unsigned int STANDARD_NOT_MANDATORY_VERIFY_FLAGS{ STANDARD_SCRIPT_VERIFY_FLAGS & ~MANDATORY_SCRIPT_VERIFY_FLAGS} ;
88
102
89
103
/* * Used as the flags parameter to sequence and nLocktime checks in non-consensus code. */
90
- static constexpr unsigned int STANDARD_LOCKTIME_VERIFY_FLAGS = LOCKTIME_VERIFY_SEQUENCE |
91
- LOCKTIME_MEDIAN_TIME_PAST;
104
+ static constexpr unsigned int STANDARD_LOCKTIME_VERIFY_FLAGS{ LOCKTIME_VERIFY_SEQUENCE |
105
+ LOCKTIME_MEDIAN_TIME_PAST} ;
92
106
93
107
CAmount GetDustThreshold (const CTxOut& txout, const CFeeRate& dustRelayFee);
94
108
0 commit comments