From 2201f657b9b99676afd9f1a0998d4b7102fe2755 Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Fri, 7 Jul 2023 16:08:48 +0200 Subject: [PATCH] remove declaration of max_uint48 with is not available by default in CVL2 --- certora/specs/helpers/helpers.spec | 3 --- 1 file changed, 3 deletions(-) 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;