diff --git a/src/account/PluginManagerInternals.sol b/src/account/PluginManagerInternals.sol index 7ed6d768..dc5fbb8a 100644 --- a/src/account/PluginManagerInternals.sol +++ b/src/account/PluginManagerInternals.sol @@ -302,7 +302,10 @@ abstract contract PluginManagerInternals is IPluginManager { _addValidationFunction( mv.executionSelector, _resolveManifestFunction( - mv.associatedFunction, plugin, dependencies, ManifestAssociatedFunctionType.RUNTIME_VALIDATION_ALWAYS_ALLOW + mv.associatedFunction, + plugin, + dependencies, + ManifestAssociatedFunctionType.RUNTIME_VALIDATION_ALWAYS_ALLOW ) ); diff --git a/test/samples/plugins/ModularSessionKeyPlugin.t.sol b/test/samples/plugins/ModularSessionKeyPlugin.t.sol index 0af2c0b8..e20cbfca 100644 --- a/test/samples/plugins/ModularSessionKeyPlugin.t.sol +++ b/test/samples/plugins/ModularSessionKeyPlugin.t.sol @@ -129,8 +129,7 @@ contract ModularSessionKeyPluginTest is Test { FunctionReference[] memory tokenSessionDependency = new FunctionReference[](1); tokenSessionDependency[0] = FunctionReferenceLib.pack( - address(modularSessionKeyPlugin), - uint8(IModularSessionKeyPlugin.FunctionId.VALIDATION_TEMPORARY_OWNER) + address(modularSessionKeyPlugin), uint8(IModularSessionKeyPlugin.FunctionId.VALIDATION_TEMPORARY_OWNER) ); bytes32 tokenSessionKeyManifestHash = keccak256(abi.encode(tokenSessionKeyPlugin.pluginManifest()));