Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gzeoneth committed Aug 14, 2024
1 parent 57f7524 commit 6c8ab9e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ contract EnableFastConfirmAction {
GNOSIS_COMPATIBILITY_FALLBACK_HANDLER = gnosisCompatibilityFallbackHandler;
}

function perform(IRollupAdmin rollup, address[] calldata fastConfirmCommittee, uint256 threshold, uint256 salt) external {
function perform(IRollupAdmin rollup, address[] calldata fastConfirmCommittee, uint256 threshold, uint256 salt)
external
{
require(rollup.anyTrustFastConfirmer() == address(0), "Fast confirm already enabled");
require(threshold > 0 && threshold <= fastConfirmCommittee.length, "Invalid threshold");
for (uint256 i = 0; i < fastConfirmCommittee.length; i++) {
Expand Down

0 comments on commit 6c8ab9e

Please sign in to comment.