From 335a150542af07ef13e642cd716afd74df8fab21 Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 12 Aug 2024 11:27:48 -0400 Subject: [PATCH] style: re-run udpated forge fmt --- src/account/UpgradeableModularAccount.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/account/UpgradeableModularAccount.sol b/src/account/UpgradeableModularAccount.sol index 348c7455..8826d1d0 100644 --- a/src/account/UpgradeableModularAccount.sol +++ b/src/account/UpgradeableModularAccount.sol @@ -481,7 +481,7 @@ contract UpgradeableModularAccount is ) // forgefmt: disable-start // solhint-disable-next-line no-empty-blocks - {} catch (bytes memory revertReason) { + {} catch (bytes memory revertReason){ // forgefmt: disable-end revert RuntimeValidationFunctionReverted(module, entityId, revertReason); } @@ -571,7 +571,7 @@ contract UpgradeableModularAccount is ) // forgefmt: disable-start // solhint-disable-next-line no-empty-blocks - {} catch (bytes memory revertReason) { + {} catch (bytes memory revertReason){ // forgefmt: disable-end revert PreRuntimeValidationHookFailed(hookModule, hookEntityId, revertReason); }