From 6637d9df56b09615a9e88370d90a4dadcb4cd7dd Mon Sep 17 00:00:00 2001 From: Dima Lekhovitsky Date: Thu, 23 Nov 2023 12:34:44 +0200 Subject: [PATCH] fix: solc v0.8.17 --- contracts/Governor.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/Governor.sol b/contracts/Governor.sol index d758944..801a02b 100644 --- a/contracts/Governor.sol +++ b/contracts/Governor.sol @@ -24,10 +24,10 @@ contract Governor is IGovernor { address public override vetoAdmin; /// @inheritdoc IGovernor - mapping(uint256 batchBlock => BatchInfo) public override batchInfo; + mapping(uint256 => BatchInfo) public override batchInfo; /// @inheritdoc IGovernor - mapping(bytes32 txHash => BatchedTxInfo) public override batchedTxInfo; + mapping(bytes32 => BatchedTxInfo) public override batchedTxInfo; /// @dev Ensures that function can only be called by the timelock contract modifier timeLockOnly() {