Bitcoin Core  31.0.0
P2P Digital Currency
policy.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-present The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef BITCOIN_POLICY_POLICY_H
7 #define BITCOIN_POLICY_POLICY_H
8 
9 #include <consensus/amount.h>
10 #include <consensus/consensus.h>
11 #include <primitives/transaction.h>
12 #include <script/interpreter.h>
13 #include <script/solver.h>
14 #include <util/feefrac.h>
15 
16 #include <cstdint>
17 #include <string>
18 
19 class CCoinsViewCache;
20 class CFeeRate;
21 class CScript;
22 
24 static constexpr unsigned int DEFAULT_BLOCK_MAX_WEIGHT{MAX_BLOCK_WEIGHT};
26 static constexpr unsigned int DEFAULT_BLOCK_RESERVED_WEIGHT{8000};
28 static constexpr unsigned int DEFAULT_COINBASE_OUTPUT_MAX_ADDITIONAL_SIGOPS{400};
33 static constexpr unsigned int MINIMUM_BLOCK_RESERVED_WEIGHT{2000};
35 static constexpr unsigned int DEFAULT_BLOCK_MIN_TX_FEE{1};
37 static constexpr int32_t MAX_STANDARD_TX_WEIGHT{400000};
39 static constexpr unsigned int MIN_STANDARD_TX_NONWITNESS_SIZE{65};
41 static constexpr unsigned int MAX_P2SH_SIGOPS{15};
43 static constexpr unsigned int MAX_STANDARD_TX_SIGOPS_COST{MAX_BLOCK_SIGOPS_COST/5};
45 static constexpr unsigned int MAX_TX_LEGACY_SIGOPS{2'500};
47 static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE{100};
49 static constexpr unsigned int DEFAULT_BYTES_PER_SIGOP{20};
51 static constexpr bool DEFAULT_PERMIT_BAREMULTISIG{true};
53 static constexpr unsigned int MAX_STANDARD_P2WSH_STACK_ITEMS{100};
55 static constexpr unsigned int MAX_STANDARD_P2WSH_STACK_ITEM_SIZE{80};
57 static constexpr unsigned int MAX_STANDARD_TAPSCRIPT_STACK_ITEM_SIZE{80};
59 static constexpr unsigned int MAX_STANDARD_P2WSH_SCRIPT_SIZE{3600};
61 static constexpr unsigned int MAX_STANDARD_SCRIPTSIG_SIZE{1650};
67 static constexpr unsigned int DUST_RELAY_TX_FEE{3000};
69 static constexpr unsigned int DEFAULT_MIN_RELAY_TX_FEE{100};
71 static constexpr unsigned int DEFAULT_CLUSTER_LIMIT{64};
73 static constexpr unsigned int DEFAULT_CLUSTER_SIZE_LIMIT_KVB{101};
75 static constexpr unsigned int DEFAULT_ANCESTOR_LIMIT{25};
77 static constexpr unsigned int DEFAULT_DESCENDANT_LIMIT{25};
79 static const bool DEFAULT_ACCEPT_DATACARRIER = true;
83 static const unsigned int MAX_OP_RETURN_RELAY = MAX_STANDARD_TX_WEIGHT / WITNESS_SCALE_FACTOR;
89 static constexpr unsigned int EXTRA_DESCENDANT_TX_SIZE_LIMIT{10000};
90 
94 static constexpr unsigned int MAX_DUST_OUTPUTS_PER_TX{1};
95 
104 static constexpr script_verify_flags MANDATORY_SCRIPT_VERIFY_FLAGS{SCRIPT_VERIFY_P2SH |
105  SCRIPT_VERIFY_DERSIG |
106  SCRIPT_VERIFY_NULLDUMMY |
107  SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY |
108  SCRIPT_VERIFY_CHECKSEQUENCEVERIFY |
109  SCRIPT_VERIFY_WITNESS |
110  SCRIPT_VERIFY_TAPROOT};
111 
118 static constexpr script_verify_flags STANDARD_SCRIPT_VERIFY_FLAGS{MANDATORY_SCRIPT_VERIFY_FLAGS |
119  SCRIPT_VERIFY_STRICTENC |
120  SCRIPT_VERIFY_MINIMALDATA |
121  SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS |
122  SCRIPT_VERIFY_CLEANSTACK |
123  SCRIPT_VERIFY_MINIMALIF |
124  SCRIPT_VERIFY_NULLFAIL |
125  SCRIPT_VERIFY_LOW_S |
126  SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM |
127  SCRIPT_VERIFY_WITNESS_PUBKEYTYPE |
128  SCRIPT_VERIFY_CONST_SCRIPTCODE |
129  SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_TAPROOT_VERSION |
130  SCRIPT_VERIFY_DISCOURAGE_OP_SUCCESS |
131  SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_PUBKEYTYPE};
132 
134 static constexpr script_verify_flags STANDARD_NOT_MANDATORY_VERIFY_FLAGS{STANDARD_SCRIPT_VERIFY_FLAGS & ~MANDATORY_SCRIPT_VERIFY_FLAGS};
135 
137 static constexpr unsigned int STANDARD_LOCKTIME_VERIFY_FLAGS{LOCKTIME_VERIFY_SEQUENCE};
138 
139 CAmount GetDustThreshold(const CTxOut& txout, const CFeeRate& dustRelayFee);
140 
141 bool IsDust(const CTxOut& txout, const CFeeRate& dustRelayFee);
142 
143 bool IsStandard(const CScript& scriptPubKey, TxoutType& whichType);
144 
146 std::vector<uint32_t> GetDust(const CTransaction& tx, CFeeRate dust_relay_rate);
147 
148 // Changing the default transaction version requires a two step process: first
149 // adapting relay policy by bumping TX_MAX_STANDARD_VERSION, and then later
150 // allowing the new transaction version in the wallet/RPC.
151 static constexpr decltype(CTransaction::version) TX_MIN_STANDARD_VERSION{1};
152 static constexpr decltype(CTransaction::version) TX_MAX_STANDARD_VERSION{3};
153 
158 bool IsStandardTx(const CTransaction& tx, const std::optional<unsigned>& max_datacarrier_bytes, bool permit_bare_multisig, const CFeeRate& dust_relay_fee, std::string& reason);
164 bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs);
172 bool IsWitnessStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs);
177 bool SpendsNonAnchorWitnessProg(const CTransaction& tx, const CCoinsViewCache& prevouts);
178 
180 int64_t GetVirtualTransactionSize(int64_t nWeight, int64_t nSigOpCost, unsigned int bytes_per_sigop);
181 int64_t GetVirtualTransactionSize(const CTransaction& tx, int64_t nSigOpCost, unsigned int bytes_per_sigop);
182 int64_t GetVirtualTransactionInputSize(const CTxIn& tx, int64_t nSigOpCost, unsigned int bytes_per_sigop);
183 
184 static inline int64_t GetVirtualTransactionSize(const CTransaction& tx)
185 {
186  return GetVirtualTransactionSize(tx, 0, 0);
187 }
188 
189 static inline int64_t GetVirtualTransactionInputSize(const CTxIn& tx)
190 {
191  return GetVirtualTransactionInputSize(tx, 0, 0);
192 }
193 
194 int64_t GetSigOpsAdjustedWeight(int64_t weight, int64_t sigop_cost, unsigned int bytes_per_sigop);
195 
196 static inline FeePerVSize ToFeePerVSize(FeePerWeight feerate) { return {feerate.fee, (feerate.size + WITNESS_SCALE_FACTOR - 1) / WITNESS_SCALE_FACTOR}; }
197 
198 #endif // BITCOIN_POLICY_POLICY_H
static constexpr unsigned int DEFAULT_BLOCK_RESERVED_WEIGHT
Default for -blockreservedweight.
Definition: policy.h:26
static const int64_t MAX_BLOCK_SIGOPS_COST
The maximum allowed number of signature check operations in a block (network rule) ...
Definition: consensus.h:17
static const unsigned int MAX_BLOCK_WEIGHT
The maximum allowed weight for a block, see BIP 141 (network rule)
Definition: consensus.h:15
static constexpr unsigned int DEFAULT_COINBASE_OUTPUT_MAX_ADDITIONAL_SIGOPS
Default sigops cost to reserve for coinbase transaction outputs when creating block templates...
Definition: policy.h:28
static constexpr unsigned int MAX_P2SH_SIGOPS
Maximum number of signature check operations in an IsStandard() P2SH script.
Definition: policy.h:41
static constexpr unsigned int MAX_TX_LEGACY_SIGOPS
The maximum number of potentially executed legacy signature operations in a single standard tx...
Definition: policy.h:45
static constexpr unsigned int MAX_STANDARD_TX_SIGOPS_COST
The maximum number of sigops we&#39;re willing to relay/mine in a single tx.
Definition: policy.h:43
static constexpr int32_t MAX_STANDARD_TX_WEIGHT
The maximum weight for transactions we&#39;re willing to relay/mine.
Definition: policy.h:37
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:404
static constexpr unsigned int MIN_STANDARD_TX_NONWITNESS_SIZE
The minimum non-witness size for transactions we&#39;re willing to relay/mine: one larger than 64...
Definition: policy.h:39
static constexpr unsigned int DEFAULT_BLOCK_MAX_WEIGHT
Default for -blockmaxweight, which controls the range of block weights the mining code will create...
Definition: policy.h:24
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac...
Definition: feerate.h:31
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...
Definition: policy.h:35
CCoinsView that adds a memory cache for transactions to another CCoinsView.
Definition: coins.h:367
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 ...
Definition: policy.h:33