File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,13 @@ static constexpr unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT_KVB{101};
63
63
static constexpr unsigned int DEFAULT_DESCENDANT_LIMIT{25 };
64
64
/* * Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */
65
65
static constexpr unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT_KVB{101 };
66
+ /* * Default for -datacarrier */
67
+ static const bool DEFAULT_ACCEPT_DATACARRIER = true ;
68
+ /* *
69
+ * Default setting for -datacarriersize. 80 bytes of data, +1 for OP_RETURN,
70
+ * +2 for the pushdata opcodes.
71
+ */
72
+ static const unsigned int MAX_OP_RETURN_RELAY = 83 ;
66
73
/* *
67
74
* An extra transaction can be added to a package, as long as it only has one
68
75
* ancestor and is no larger than this. Not really any reason to make this
Original file line number Diff line number Diff line change 16
16
#include < string>
17
17
#include < variant>
18
18
19
- static const bool DEFAULT_ACCEPT_DATACARRIER = true ;
20
-
21
19
class CScript ;
22
20
23
- /* *
24
- * Default setting for -datacarriersize. 80 bytes of data, +1 for OP_RETURN,
25
- * +2 for the pushdata opcodes.
26
- */
27
- static const unsigned int MAX_OP_RETURN_RELAY = 83 ;
28
-
29
21
enum class TxoutType {
30
22
NONSTANDARD,
31
23
// 'standard' transaction types:
You can’t perform that action at this time.
0 commit comments