From e23a4163bd6e6518e229b0c619104899b6c143f9 Mon Sep 17 00:00:00 2001 From: QUAQ Date: Thu, 29 Feb 2024 16:33:03 -0600 Subject: [PATCH] threshold values --- contracts/src/core/EigenDAServiceManagerStorage.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/src/core/EigenDAServiceManagerStorage.sol b/contracts/src/core/EigenDAServiceManagerStorage.sol index e628d80b9a..5cd23d7e59 100644 --- a/contracts/src/core/EigenDAServiceManagerStorage.sol +++ b/contracts/src/core/EigenDAServiceManagerStorage.sol @@ -26,8 +26,8 @@ abstract contract EigenDAServiceManagerStorage is IEigenDAServiceManager { */ uint32 public constant BLOCK_STALE_MEASURE = 150; - bytes public constant quorumAdversaryThresholdPercentages = hex"3232"; - bytes public constant quorumConfirmationThresholdPercentages = hex"3232"; + bytes public constant quorumAdversaryThresholdPercentages = hex"2121"; + bytes public constant quorumConfirmationThresholdPercentages = hex"4242"; /// @notice The current batchId uint32 public batchId;