removed a assert failure message from an invariant in Initializable spec

This commit is contained in:
teryanarmen
2022-06-06 12:55:54 -07:00
parent 866042d6fc
commit 1aa8141b14

View File

@ -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()
//////////////////////////////////////////////////////////////////////////////