Skip to content

Commit f54d0b0

Browse files
committed
chore: revert bad edit
1 parent f65c755 commit f54d0b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/middlewareV2/tableCalculator/BN254WeightedTableCalculator.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ contract BN254WeightedTableCalculator is BN254TableCalculatorBase, PermissionCon
6565
uint256[] calldata multipliers
6666
) external checkCanCall(operatorSet.avs) {
6767
// Validate input arrays
68-
require(strategies.length == multipliers.length, "ArrayLengthMismatch");
68+
require(strategies.length == multipliers.length, ArrayLengthMismatch());
6969

7070
bytes32 operatorSetKey = operatorSet.key();
7171

src/middlewareV2/tableCalculator/unaudited/BN254TableCalculatorWithCaps.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import {IPermissionController} from
1111
import {PermissionControllerMixin} from
1212
"eigenlayer-contracts/src/contracts/mixins/PermissionControllerMixin.sol";
1313

14-
import "./BN254TableCalculatorBase.sol";
15-
import {WeightCapUtils} from "../../libraries/WeightCapUtils.sol";
14+
import "../BN254TableCalculatorBase.sol";
15+
import {WeightCapUtils} from "../../../libraries/WeightCapUtils.sol";
1616

1717
/**
1818
* @title BN254TableCalculatorWithCaps

0 commit comments

Comments
 (0)