Skip to content

Commit 5288a6b

Browse files
committed
chore: forge fmt
1 parent 1aa9efb commit 5288a6b

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

test/unit/middlewareV2/BN254TableCalculatorBaseUnit.t.sol

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ import {
77
} from "eigenlayer-contracts/src/contracts/permissions/KeyRegistrar.sol";
88
import {IAVSRegistrar} from "eigenlayer-contracts/src/contracts/interfaces/IAVSRegistrar.sol";
99
import {IKeyRegistrar} from "eigenlayer-contracts/src/contracts/interfaces/IKeyRegistrar.sol";
10-
import {BN254, IOperatorTableCalculatorTypes} from
11-
"eigenlayer-contracts/src/contracts/interfaces/IOperatorTableCalculator.sol";
10+
import {
11+
BN254,
12+
IOperatorTableCalculatorTypes
13+
} from "eigenlayer-contracts/src/contracts/interfaces/IOperatorTableCalculator.sol";
1214
import {IBN254TableCalculator} from "../../../src/interfaces/IBN254TableCalculator.sol";
1315
import {
1416
OperatorSet,
@@ -214,7 +216,11 @@ contract BN254TableCalculatorBaseUnitTests is
214216
BN254.G1Point memory pubkey,
215217
uint256[] memory weights
216218
) internal pure returns (bytes32) {
217-
return keccak256(abi.encode(IOperatorTableCalculatorTypes.BN254OperatorInfo({pubkey: pubkey, weights: weights})));
219+
return keccak256(
220+
abi.encode(
221+
IOperatorTableCalculatorTypes.BN254OperatorInfo({pubkey: pubkey, weights: weights})
222+
)
223+
);
218224
}
219225
}
220226

0 commit comments

Comments
 (0)