Skip to content

Commit

Permalink
fix: solc v0.8.17
Browse files Browse the repository at this point in the history
  • Loading branch information
lekhovitsky committed Nov 23, 2023
1 parent e8fce37 commit 6637d9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/Governor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 6637d9d

Please sign in to comment.