diff --git a/slither.config.json b/slither.config.json index b911d8bc..356f54fc 100644 --- a/slither.config.json +++ b/slither.config.json @@ -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 - } - \ No newline at end of file + "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 +} diff --git a/src/AAFactory.sol b/src/AAFactory.sol index 0223f79b..ac8f97d1 100644 --- a/src/AAFactory.sol +++ b/src/AAFactory.sol @@ -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);