Skip to content

Commit

Permalink
forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adamegyed committed Mar 5, 2024
1 parent 81f3c51 commit 0624f35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/account/PluginManagerInternals.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
);

Expand Down
3 changes: 1 addition & 2 deletions test/samples/plugins/ModularSessionKeyPlugin.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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()));

Expand Down

0 comments on commit 0624f35

Please sign in to comment.