diff options
Diffstat (limited to 'src/policy/policy.h')
-rw-r--r-- | src/policy/policy.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h index a82488a28c..4412f2db87 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -77,6 +77,10 @@ static const unsigned int MAX_OP_RETURN_RELAY = 83; */ static constexpr unsigned int EXTRA_DESCENDANT_TX_SIZE_LIMIT{10000}; +/** + * Maximum number of ephemeral dust outputs allowed. + */ +static constexpr unsigned int MAX_DUST_OUTPUTS_PER_TX{1}; /** * Mandatory script verification flags that all new transactions must comply with for @@ -127,6 +131,8 @@ bool IsDust(const CTxOut& txout, const CFeeRate& dustRelayFee); bool IsStandard(const CScript& scriptPubKey, const std::optional<unsigned>& max_datacarrier_bytes, TxoutType& whichType); +/** Get the vout index numbers of all dust outputs */ +std::vector<uint32_t> GetDust(const CTransaction& tx, CFeeRate dust_relay_rate); // Changing the default transaction version requires a two step process: first // adapting relay policy by bumping TX_MAX_STANDARD_VERSION, and then later |