We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff1391 commit fadc54bCopy full SHA for fadc54b
src/script/script.h
@@ -51,10 +51,10 @@ static const uint32_t LOCKTIME_MAX = 0xFFFFFFFFU;
51
static constexpr unsigned int ANNEX_TAG = 0x50;
52
53
// Validation weight per passing signature (Tapscript only, see BIP 342).
54
-static constexpr uint64_t VALIDATION_WEIGHT_PER_SIGOP_PASSED = 50;
+static constexpr int64_t VALIDATION_WEIGHT_PER_SIGOP_PASSED{50};
55
56
// How much weight budget is added to the witness size (Tapscript only, see BIP 342).
57
-static constexpr uint64_t VALIDATION_WEIGHT_OFFSET = 50;
+static constexpr int64_t VALIDATION_WEIGHT_OFFSET{50};
58
59
template <typename T>
60
std::vector<unsigned char> ToByteVector(const T& in)
0 commit comments