From fe62c061acca48cf45b27e6e84ca916e123bc777 Mon Sep 17 00:00:00 2001 From: dzgoldman Date: Thu, 5 Oct 2023 09:52:14 -0400 Subject: [PATCH] fix typo --- src/orbit-chain-governance/factories/ParentChainGovFactory.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/orbit-chain-governance/factories/ParentChainGovFactory.sol b/src/orbit-chain-governance/factories/ParentChainGovFactory.sol index ebc52a3a..f26435ee 100644 --- a/src/orbit-chain-governance/factories/ParentChainGovFactory.sol +++ b/src/orbit-chain-governance/factories/ParentChainGovFactory.sol @@ -62,7 +62,7 @@ contract ParentChainGovFactory is Ownable { timelock.revokeRole(timelock.TIMELOCK_ADMIN_ROLE(), address(this)); // grant canceller role to upgrade executor; this can be used e.g. by an admin with executor affordance granted to the upgrade executor - timelock.grantRole(timelock.CANCELLER_ROLE()(), address(_parentChainUpExec)); + timelock.grantRole(timelock.CANCELLER_ROLE(), address(_parentChainUpExec)); emit Deployed(timelock); }