Changeset View
Changeset View
Standalone View
Standalone View
src/script/script_flags.h
| Show First 20 Lines • Show All 98 Lines • ▼ Show 20 Lines | enum { | ||||
| // Require the number of sigchecks in an input to satisfy a specific | // Require the number of sigchecks in an input to satisfy a specific | ||||
| // bound, defined by scriptSig length. | // bound, defined by scriptSig length. | ||||
| // Note: The Segwit Recovery feature is a (currently moot) exception to | // Note: The Segwit Recovery feature is a (currently moot) exception to | ||||
| // VERIFY_INPUT_SIGCHECKS | // VERIFY_INPUT_SIGCHECKS | ||||
| SCRIPT_VERIFY_INPUT_SIGCHECKS = (1U << 22), | SCRIPT_VERIFY_INPUT_SIGCHECKS = (1U << 22), | ||||
| // A utility flag to decide whether we must enforce sigcheck limits. | // A utility flag to decide whether we must enforce sigcheck limits. | ||||
| SCRIPT_ENFORCE_SIGCHECKS = (1U << 23), | SCRIPT_ENFORCE_SIGCHECKS = (1U << 23), | ||||
| // Enable 63+sign-bit integers in script execution (31+sign otherwise). | |||||
| SCRIPT_ENABLE_63_BIT_INTS = (1U << 24), | |||||
| }; | }; | ||||
| #endif // BITCOIN_SCRIPT_SCRIPT_FLAGS_H | #endif // BITCOIN_SCRIPT_SCRIPT_FLAGS_H | ||||