Skip to content

Commit 170cf42

Browse files
committed
fmt
1 parent d5b133a commit 170cf42

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

script/CustomExternalCallNonRestakingValidators.s.sol

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: GPL-3.0
22
pragma solidity >=0.8.0 <0.9.0;
33

4-
import { Script } from "forge-std/Script.sol";
5-
import { stdJson } from "forge-std/StdJson.sol";
6-
import { console } from "forge-std/console.sol";
4+
import {Script} from "forge-std/Script.sol";
5+
import {stdJson} from "forge-std/StdJson.sol";
6+
import {console} from "forge-std/console.sol";
77

88
interface IInstitutionalVault {
99
function customExternalCall(address target, bytes calldata data, uint256 amount) external payable;
@@ -72,7 +72,9 @@ contract CustomExternalCallNonRestakingValidators is Script {
7272
);
7373

7474
// TODO: Custom external call directly to the beacon deposit contract
75-
IInstitutionalVault(institutionalVaultProxy).customExternalCall(0x00000000219ab540356cBB839Cbe05303d7705Fa, data, amount);
75+
IInstitutionalVault(institutionalVaultProxy).customExternalCall(
76+
0x00000000219ab540356cBB839Cbe05303d7705Fa, data, amount
77+
);
7678
}
7779

7880
vm.stopBroadcast();

script/StartNoRestakingValidators.s.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: GPL-3.0
22
pragma solidity >=0.8.0 <0.9.0;
33

4-
import { Script } from "forge-std/Script.sol";
5-
import { stdJson } from "forge-std/StdJson.sol";
6-
import { console } from "forge-std/console.sol";
4+
import {Script} from "forge-std/Script.sol";
5+
import {stdJson} from "forge-std/StdJson.sol";
6+
import {console} from "forge-std/console.sol";
77

88
interface IInstitutionalVault {
99
function startNonRestakingValidators(

0 commit comments

Comments
 (0)