From abd18e83fe6dfec9e53753d2607af845925e9928 Mon Sep 17 00:00:00 2001 From: D <51912515+adaki2004@users.noreply.github.com> Date: Wed, 17 Apr 2024 06:45:23 +0200 Subject: [PATCH] fix(protocol): renounce timelock_admin role from msg.sender (#16751) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Keszey Dániel --- packages/protocol/script/DeployOnL1.s.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/protocol/script/DeployOnL1.s.sol b/packages/protocol/script/DeployOnL1.s.sol index 37c77d66fdb..461e75aaa62 100644 --- a/packages/protocol/script/DeployOnL1.s.sol +++ b/packages/protocol/script/DeployOnL1.s.sol @@ -161,6 +161,7 @@ contract DeployOnL1 is DeployCapability { _timelock.revokeRole(_timelock.PROPOSER_ROLE(), msg.sender); _timelock.revokeRole(_timelock.EXECUTOR_ROLE(), msg.sender); _timelock.transferOwnership(securityCouncil); + _timelock.renounceRole(_timelock.TIMELOCK_ADMIN_ROLE(), msg.sender); } function deploySharedContracts()