Browse Source

removed a assert failure message from an invariant in Initializable spec

teryanarmen 3 years ago
parent
commit
1aa8141b14
1 changed files with 1 additions and 1 deletions
  1. 1 1
      certora/specs/Initializable.spec

+ 1 - 1
certora/specs/Initializable.spec

@@ -38,7 +38,7 @@ definition isDisabled() returns bool = initialized() == 255;
 
 /// @description A contract must only ever be in an initializing state while in the middle of a transaction execution.
 invariant notInitializing()
-    !initializing(), "contract must not be initializing"
+    !initializing()
 
 
 //////////////////////////////////////////////////////////////////////////////