File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/sharing-smart-contract/test/invariant/handlers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {GhostStorage} from "./GhostStorage.sol";
1313contract HandlerGlobal is Test , GhostStorage {
1414 // ---------------------State Variables------------------------------------
1515 // TODO remove hardcoded values to make tests compatible with any chain.
16- IPoCo public constant POCO_DELEGATE = IPoCo ( 0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f ) ;
16+ IPoCo public constant POCO_DELEGATE = 0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f ;
1717 IRegistry public constant POCO_PROTECTED_DATA_REGISTRY =
1818 IRegistry (0x799DAa22654128d0C64d5b79eac9283008158730 );
1919 IDataProtector public constant DATA_PROTECTOR_CORE =
@@ -26,7 +26,7 @@ contract HandlerGlobal is Test, GhostStorage {
2626 constructor () {
2727 address admin = address (54321 );
2828 vm.label (admin, "admin " );
29- vm.label (address ( POCO_DELEGATE) , "pocoDelegate " );
29+ vm.label (POCO_DELEGATE, "pocoDelegate " );
3030 vm.label (address (POCO_PROTECTED_DATA_REGISTRY), "protectedDataRegistry " );
3131
3232 AddOnlyAppWhitelistRegistry appWhitelistImpl = new AddOnlyAppWhitelistRegistry ();
You can’t perform that action at this time.
0 commit comments