Skip to content

Commit 6098241

Browse files
committed
chore: cleanup
1 parent 02a3c89 commit 6098241

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/CouncilExecutor.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ contract CouncilExecutor is TimelockController {
107107
bytes32 _predecessor,
108108
bytes32 _salt,
109109
uint256 /*_delay*/
110-
) public virtual override onlyCouncilVetoGovernor returns (bytes32) {
110+
) public virtual override onlyCouncilVetoGovernor {
111111
// Validate lengths
112112
if (_targets.length != _values.length || _targets.length != _payloads.length) {
113113
revert TimelockInvalidOperationLength(_targets.length, _payloads.length, _values.length);
@@ -150,8 +150,6 @@ contract CouncilExecutor is TimelockController {
150150
// Track transaction
151151
_compoundTxHashes.push(_compoundTxHash);
152152
}
153-
154-
return _operationId;
155153
}
156154

157155
/// @notice Executes a batch of operations that have been queued.

0 commit comments

Comments
 (0)