Skip to content

Commit 22d8f6b

Browse files
committed
fmt
1 parent 5464917 commit 22d8f6b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/contracts-bedrock/src/safe/LivenessModule2.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ contract LivenessModule2 is ISemver {
372372

373373
// Get current modules
374374
// This might not work if you have more than 100 modules, but that's a you problem.
375-
(address[] memory modules, ) = _targetSafe.getModulesPaginated(SENTINEL_OWNER, 100);
375+
(address[] memory modules,) = _targetSafe.getModulesPaginated(SENTINEL_OWNER, 100);
376376

377377
// find the index of this module
378378
bool moduleFound = false;
@@ -387,7 +387,8 @@ contract LivenessModule2 is ISemver {
387387
if (moduleFound) {
388388
// If the module is the first in the list, then the previous module is the sentinel.
389389
address prevModule = SENTINEL_OWNER;
390-
// If the module is not the first in the list, then the previous module is the module before in in the array.
390+
// If the module is not the first in the list, then the previous module is the module before in in the
391+
// array.
391392
if (moduleIndex > 0) {
392393
prevModule = modules[moduleIndex - 1];
393394
}

0 commit comments

Comments
 (0)