Skip to content

Commit

Permalink
revert nit
Browse files Browse the repository at this point in the history
  • Loading branch information
0x0aa0 committed May 31, 2024
1 parent e27b783 commit 55eb0de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/src/core/EigenDAServiceManagerStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ abstract contract EigenDAServiceManagerStorage is IEigenDAServiceManager {
* this is the percentage of the total stake that must be adversarial to consider a blob invalid.
* The first byte is the threshold for quorum 0, the second byte is the threshold for quorum 1, etc.
*/
bytes public constant quorumAdversaryThresholdPercentages = hex"2121";
bytes public constant quorumAdversaryThresholdPercentages = hex"21";

/**
* @notice The quorum confirmation threshold percentages stored as an ordered bytes array
* this is the percentage of the total stake needed to confirm a blob.
* The first byte is the threshold for quorum 0, the second byte is the threshold for quorum 1, etc.
*/
bytes public constant quorumConfirmationThresholdPercentages = hex"3737";
bytes public constant quorumConfirmationThresholdPercentages = hex"37";

/**
* @notice The quorum numbers required for confirmation stored as an ordered bytes array
* these quorum numbers have respective canonical thresholds in the
* quorumConfirmationThresholdPercentages and quorumAdversaryThresholdPercentages above.
*/
bytes public constant quorumNumbersRequired = hex"0001";
bytes public constant quorumNumbersRequired = hex"00";

/// @notice The current batchId
uint32 public batchId;
Expand Down

0 comments on commit 55eb0de

Please sign in to comment.