diff --git a/certora/specs/helpers/helpers.spec b/certora/specs/helpers/helpers.spec index 713f58557..a6c1e2302 100644 --- a/certora/specs/helpers/helpers.spec +++ b/certora/specs/helpers/helpers.spec @@ -2,9 +2,6 @@ definition nonpayable(env e) returns bool = e.msg.value == 0; definition nonzerosender(env e) returns bool = e.msg.sender != 0; -// constants -// definition max_uint48() returns mathint = (1 << 48) - 1; - // math definition min(mathint a, mathint b) returns mathint = a < b ? a : b; definition max(mathint a, mathint b) returns mathint = a > b ? a : b;