From b4299ea1510e8c5e26daa652cf57ab12007212d3 Mon Sep 17 00:00:00 2001 From: Michael de Hoog Date: Mon, 4 Nov 2024 14:32:46 -1000 Subject: [PATCH] forge fmt --- script/universal/Simulation.sol | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/script/universal/Simulation.sol b/script/universal/Simulation.sol index 74caf20..ca51288 100644 --- a/script/universal/Simulation.sol +++ b/script/universal/Simulation.sol @@ -51,11 +51,7 @@ library Simulation { return accesses; } - function overrideSafeThresholdAndNonce(address _safe, uint256 _nonce) - public - view - returns (StateOverride memory) - { + function overrideSafeThresholdAndNonce(address _safe, uint256 _nonce) public view returns (StateOverride memory) { StateOverride memory state = StateOverride({contractAddress: _safe, overrides: new StorageOverride[](0)}); state = addThresholdOverride(_safe, state); state = addNonceOverride(_safe, state, _nonce);