Skip to content

Commit bd8b02b

Browse files
fix: foundry fmt check spaces
1 parent 54bc621 commit bd8b02b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/account/UpgradeableModularAccount.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ contract UpgradeableModularAccount is
474474
)
475475
// forgefmt: disable-start
476476
// solhint-disable-next-line no-empty-blocks
477-
{} catch (bytes memory revertReason) {
477+
{} catch (bytes memory revertReason){
478478
// forgefmt: disable-end
479479
revert RuntimeValidationFunctionReverted(module, entityId, revertReason);
480480
}
@@ -564,7 +564,7 @@ contract UpgradeableModularAccount is
564564
)
565565
// forgefmt: disable-start
566566
// solhint-disable-next-line no-empty-blocks
567-
{} catch (bytes memory revertReason) {
567+
{} catch (bytes memory revertReason){
568568
// forgefmt: disable-end
569569
revert PreRuntimeValidationHookFailed(hookModule, hookEntityId, revertReason);
570570
}

0 commit comments

Comments
 (0)