File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/contracts-bedrock/src/safe Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments