Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsec-security committed Jan 22, 2025
1 parent 2cfc9b4 commit 1f8f164
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
23 changes: 11 additions & 12 deletions slither.config.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"filter_paths": "(test|src/test|scripts|node_modules)",
"detectors_to_exclude": "uninitialized-local,unused-returns",
"exclude_dependencies": true,
"compile_force_framework": "foundry",
"foundry_ignore_compile": false,
"exclude_high": false,
"exclude_medium": false,
"exclude_low": true,
"exclude_informational": true,
"exclude_optimization": true
}

"filter_paths": "(test|src/test|scripts|node_modules)",
"detectors_to_exclude": "uninitialized-local,unused-returns",
"exclude_dependencies": true,
"compile_force_framework": "foundry",
"foundry_ignore_compile": false,
"exclude_high": false,
"exclude_medium": false,
"exclude_low": true,
"exclude_informational": true,
"exclude_optimization": true
}
2 changes: 1 addition & 1 deletion src/AAFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ contract AAFactory {
(accountAddress) = abi.decode(returnData, (address));

accountMappings[_uniqueAccountId] = accountAddress;

// Initialize the newly deployed account with validators, hooks and K1 owners.
ISsoAccount(accountAddress).initialize(_initialValidators, _initialK1Owners);

Expand Down

0 comments on commit 1f8f164

Please sign in to comment.