You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static_assert(ValidDeployment(Consensus::DEPLOYMENT_TESTDUMMY), "sanity check of DeploymentPos failed (TESTDUMMY not valid)");
16
18
static_assert(!ValidDeployment(Consensus::MAX_VERSION_BITS_DEPLOYMENTS), "sanity check of DeploymentPos failed (MAX value considered valid)");
17
19
static_assert(!ValidDeployment(static_cast<Consensus::BuriedDeployment>(Consensus::DEPLOYMENT_TESTDUMMY)), "sanity check of BuriedDeployment failed (overlaps with DeploymentPos)");
20
+
21
+
/* ValidDeployment only checks upper bounds for ensuring validity.
22
+
* This checks that the lowest possible value or the type is also a
23
+
* (specific) valid deployment so that lower bounds don't need to be checked.
24
+
*/
25
+
26
+
template<typename T, T x>
27
+
staticconstexprboolis_minimum()
28
+
{
29
+
using U = typename std::underlying_type<T>::type;
30
+
return x == std::numeric_limits<U>::min();
31
+
}
32
+
33
+
static_assert(is_minimum<Consensus::BuriedDeployment, Consensus::DEPLOYMENT_HEIGHTINCB>(), "heightincb is not minimum value for BuriedDeployment");
34
+
static_assert(is_minimum<Consensus::DeploymentPos, Consensus::DEPLOYMENT_TESTDUMMY>(), "testdummy is not minimum value for DeploymentPos");
0 commit comments