File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,10 @@ abstract contract ForkTest is Test {
4343
4444 addressProvider = IAddressProvider (vm.envAddress ("FORK_ADDRESS_PROVIDER " ));
4545
46- acl = new ACL (address (this ));
4746 aclLegacy = IACLLegacy (addressProvider.getAddressOrRevert (AP_ACL, NO_VERSION_CONTROL));
4847 register = IContractsRegister (addressProvider.getAddressOrRevert (AP_CONTRACTS_REGISTER, NO_VERSION_CONTROL));
4948 configurator = Ownable (address (aclLegacy)).owner ();
50- acl.transferOwnership (configurator);
51- vm.prank (configurator);
52- acl.acceptOwnership ();
49+ acl = new ACL (configurator);
5350 }
5451
5552 function _grantRole (bytes32 role , address account ) internal {
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ contract LegacyHelper {
104104 }
105105
106106 function _getCurators () internal pure returns (CuratorInfo[] memory curators ) {
107- CuratorInfo[4 ] memory curators_ = [
107+ CuratorInfo[5 ] memory curators_ = [
108108 CuratorInfo ({
109109 chainId: 1 ,
110110 chainName: "Ethereum " ,
You can’t perform that action at this time.
0 commit comments