Skip to content

Commit 3058f08

Browse files
chore: forge fmt
1 parent 9006e67 commit 3058f08

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

test/invariants/EthereumVaultConnector.t.sol

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,7 @@ contract EthereumVaultConnectorHandler is EthereumVaultConnectorScribble, Test {
230230
return;
231231
}
232232

233-
function batchSimulation(
234-
BatchItem[] calldata
235-
)
233+
function batchSimulation(BatchItem[] calldata)
236234
public
237235
payable
238236
override
@@ -259,9 +257,13 @@ contract EthereumVaultConnectorHandler is EthereumVaultConnectorScribble, Test {
259257
accountControllers[account].firstElement = firstElementCache;
260258
}
261259

262-
function checkAccountStatusInternal(
263-
address account
264-
) internal view virtual override returns (bool isValid, bytes memory result) {
260+
function checkAccountStatusInternal(address account)
261+
internal
262+
view
263+
virtual
264+
override
265+
returns (bool isValid, bytes memory result)
266+
{
265267
SetStorage storage accountControllersStorage = accountControllers[account];
266268
uint256 numOfControllers = accountControllersStorage.numElements;
267269

test/unit/EVCUtil/EVCUtil.t.sol

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ contract EVCClient is EVCUtil {
2727
return param;
2828
}
2929

30-
function calledThroughEVCPayableBytes(
31-
bytes calldata param
32-
) external payable callThroughEVC returns (bytes memory) {
30+
function calledThroughEVCPayableBytes(bytes calldata param)
31+
external
32+
payable
33+
callThroughEVC
34+
returns (bytes memory)
35+
{
3336
require(msg.sender == address(evc), "Not EVC");
3437
return param;
3538
}

0 commit comments

Comments
 (0)