6 #ifndef BITCOIN_POLICY_POLICY_H 7 #define BITCOIN_POLICY_POLICY_H 44 static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE{100}; 46 static constexpr unsigned int DEFAULT_BYTES_PER_SIGOP{20}; 48 static constexpr bool DEFAULT_PERMIT_BAREMULTISIG{true}; 50 static constexpr unsigned int MAX_STANDARD_P2WSH_STACK_ITEMS{100}; 52 static constexpr unsigned int MAX_STANDARD_P2WSH_STACK_ITEM_SIZE{80}; 54 static constexpr unsigned int MAX_STANDARD_TAPSCRIPT_STACK_ITEM_SIZE{80}; 56 static constexpr unsigned int MAX_STANDARD_P2WSH_SCRIPT_SIZE{3600}; 58 static constexpr unsigned int MAX_STANDARD_SCRIPTSIG_SIZE{1650}; 64 static constexpr unsigned int DUST_RELAY_TX_FEE{3000}; 66 static constexpr unsigned int DEFAULT_MIN_RELAY_TX_FEE{100}; 68 static constexpr unsigned int DEFAULT_ANCESTOR_LIMIT{25}; 70 static constexpr unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT_KVB{101}; 72 static constexpr unsigned int DEFAULT_DESCENDANT_LIMIT{25}; 74 static constexpr unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT_KVB{101}; 76 static const bool DEFAULT_ACCEPT_DATACARRIER = true; 81 static const unsigned int MAX_OP_RETURN_RELAY = 83; 87 static constexpr unsigned int EXTRA_DESCENDANT_TX_SIZE_LIMIT{10000}; 92 static constexpr unsigned int MAX_DUST_OUTPUTS_PER_TX{1}; 102 static constexpr unsigned int MANDATORY_SCRIPT_VERIFY_FLAGS{SCRIPT_VERIFY_P2SH | 103 SCRIPT_VERIFY_DERSIG | 104 SCRIPT_VERIFY_NULLDUMMY | 105 SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY | 106 SCRIPT_VERIFY_CHECKSEQUENCEVERIFY | 107 SCRIPT_VERIFY_WITNESS | 108 SCRIPT_VERIFY_TAPROOT}; 116 static constexpr unsigned int STANDARD_SCRIPT_VERIFY_FLAGS{MANDATORY_SCRIPT_VERIFY_FLAGS | 117 SCRIPT_VERIFY_STRICTENC | 118 SCRIPT_VERIFY_MINIMALDATA | 119 SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS | 120 SCRIPT_VERIFY_CLEANSTACK | 121 SCRIPT_VERIFY_MINIMALIF | 122 SCRIPT_VERIFY_NULLFAIL | 123 SCRIPT_VERIFY_LOW_S | 124 SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM | 125 SCRIPT_VERIFY_WITNESS_PUBKEYTYPE | 126 SCRIPT_VERIFY_CONST_SCRIPTCODE | 127 SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_TAPROOT_VERSION | 128 SCRIPT_VERIFY_DISCOURAGE_OP_SUCCESS | 129 SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_PUBKEYTYPE}; 132 static constexpr unsigned int STANDARD_NOT_MANDATORY_VERIFY_FLAGS{STANDARD_SCRIPT_VERIFY_FLAGS & ~MANDATORY_SCRIPT_VERIFY_FLAGS}; 135 static constexpr unsigned int STANDARD_LOCKTIME_VERIFY_FLAGS{LOCKTIME_VERIFY_SEQUENCE}; 137 CAmount GetDustThreshold(const CTxOut& txout, const CFeeRate& dustRelayFee); 139 bool IsDust(const CTxOut& txout, const CFeeRate& dustRelayFee); 141 bool IsStandard(const CScript& scriptPubKey, const std::optional<unsigned>& max_datacarrier_bytes, TxoutType& whichType); 144 std::vector<uint32_t> GetDust(const CTransaction& tx, CFeeRate dust_relay_rate); 146 // Changing the default transaction version requires a two step process: first 147 // adapting relay policy by bumping TX_MAX_STANDARD_VERSION, and then later 148 // allowing the new transaction version in the wallet/RPC. 149 static constexpr decltype(CTransaction::version) TX_MAX_STANDARD_VERSION{3}; 155 bool IsStandardTx(const CTransaction& tx, const std::optional<unsigned>& max_datacarrier_bytes, bool permit_bare_multisig, const CFeeRate& dust_relay_fee, std::string& reason); 161 bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs); 169 bool IsWitnessStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs); 172 int64_t GetVirtualTransactionSize(int64_t nWeight, int64_t nSigOpCost, unsigned int bytes_per_sigop); 173 int64_t GetVirtualTransactionSize(const CTransaction& tx, int64_t nSigOpCost, unsigned int bytes_per_sigop); 174 int64_t GetVirtualTransactionInputSize(const CTxIn& tx, int64_t nSigOpCost, unsigned int bytes_per_sigop); 176 static inline int64_t GetVirtualTransactionSize(const CTransaction& tx) 178 return GetVirtualTransactionSize(tx, 0, 0); 181 static inline int64_t GetVirtualTransactionInputSize(const CTxIn& tx) 183 return GetVirtualTransactionInputSize(tx, 0, 0); 186 #endif // BITCOIN_POLICY_POLICY_H
static constexpr unsigned int DEFAULT_BLOCK_RESERVED_WEIGHT
Default for -blockreservedweight.
static const int64_t MAX_BLOCK_SIGOPS_COST
The maximum allowed number of signature check operations in a block (network rule) ...
static const unsigned int MAX_BLOCK_WEIGHT
The maximum allowed weight for a block, see BIP 141 (network rule)
static constexpr unsigned int MAX_P2SH_SIGOPS
Maximum number of signature check operations in an IsStandard() P2SH script.
static constexpr unsigned int MAX_TX_LEGACY_SIGOPS
The maximum number of potentially executed legacy signature operations in a single standard tx...
static constexpr unsigned int MAX_STANDARD_TX_SIGOPS_COST
The maximum number of sigops we're willing to relay/mine in a single tx.
static constexpr int32_t MAX_STANDARD_TX_WEIGHT
The maximum weight for transactions we're willing to relay/mine.
Serialized script, used inside transaction inputs and outputs.
static constexpr unsigned int MIN_STANDARD_TX_NONWITNESS_SIZE
The minimum non-witness size for transactions we're willing to relay/mine: one larger than 64...
static constexpr unsigned int DEFAULT_BLOCK_MAX_WEIGHT
Default for -blockmaxweight, which controls the range of block weights the mining code will create...
Fee rate in satoshis per kilovirtualbyte: CAmount / kvB.
static constexpr unsigned int DEFAULT_BLOCK_MIN_TX_FEE
Default for -blockmintxfee, which sets the minimum feerate for a transaction in blocks created by min...
CCoinsView that adds a memory cache for transactions to another CCoinsView.
static constexpr unsigned int MINIMUM_BLOCK_RESERVED_WEIGHT
This accounts for the block header, var_int encoding of the transaction count and a minimally viable ...