From 0624f352e1463a7d0b36eb7435657fc54b3119f9 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 5 Mar 2024 13:35:00 -0500 Subject: [PATCH] forge fmt --- src/account/PluginManagerInternals.sol | 5 ++++- test/samples/plugins/ModularSessionKeyPlugin.t.sol | 3 +-- 2 files changed, 5 insertions(+), 3 deletions(-) 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()));