File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ import {
77} from "eigenlayer-contracts/src/contracts/permissions/KeyRegistrar.sol " ;
88import {IAVSRegistrar} from "eigenlayer-contracts/src/contracts/interfaces/IAVSRegistrar.sol " ;
99import {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 " ;
1214import {IBN254TableCalculator} from "../../../src/interfaces/IBN254TableCalculator.sol " ;
1315import {
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
You can’t perform that action at this time.
0 commit comments