Skip to content

Commit a38a130

Browse files
fix: foundry fmt check spaces
1 parent cae59d1 commit a38a130

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
@@ -477,7 +477,7 @@ contract UpgradeableModularAccount is
477477
)
478478
// forgefmt: disable-start
479479
// solhint-disable-next-line no-empty-blocks
480-
{} catch (bytes memory revertReason) {
480+
{} catch (bytes memory revertReason){
481481
// forgefmt: disable-end
482482
revert RuntimeValidationFunctionReverted(module, entityId, revertReason);
483483
}
@@ -567,7 +567,7 @@ contract UpgradeableModularAccount is
567567
)
568568
// forgefmt: disable-start
569569
// solhint-disable-next-line no-empty-blocks
570-
{} catch (bytes memory revertReason) {
570+
{} catch (bytes memory revertReason){
571571
// forgefmt: disable-end
572572
revert PreRuntimeValidationHookFailed(hookModule, hookEntityId, revertReason);
573573
}

0 commit comments

Comments
 (0)