File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ static const unsigned int DUST_RELAY_TX_FEE = 3000;
59
59
static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000 ;
60
60
/* * Default for -limitancestorcount, max number of in-mempool ancestors */
61
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 };
62
64
/* *
63
65
* Standard script verification flags that standard transactions will comply
64
66
* with. However scripts violating these flags may still be present in valid
Original file line number Diff line number Diff line change @@ -59,8 +59,6 @@ namespace Consensus {
59
59
struct Params ;
60
60
} // namespace Consensus
61
61
62
- /* * Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */
63
- static const unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT = 101 ;
64
62
/* * Default for -limitdescendantcount, max number of in-mempool descendants */
65
63
static const unsigned int DEFAULT_DESCENDANT_LIMIT = 25 ;
66
64
/* * Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */
You can’t perform that action at this time.
0 commit comments