Skip to content

Commit

Permalink
Update hardcoded subnet count to 64 (#5791)
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion authored May 15, 2024
1 parent aa80950 commit 6f7e4e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions consensus/types/src/eth_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ impl EthSpec for MainnetEthSpec {
type BytesPerCell = U2048;
type KzgCommitmentInclusionProofDepth = U17;
type MinCustodyRequirement = U4;
type DataColumnSubnetCount = U32;
type DataColumnSubnetCount = U64;
type DataColumnCount = U128;
type DataColumnsPerSubnet = U4;
type KzgCommitmentsInclusionProofDepth = U4; // inclusion of the whole list of commitments
Expand Down Expand Up @@ -472,7 +472,7 @@ impl EthSpec for MinimalEthSpec {
type MaxWithdrawalRequestsPerPayload = U2;
// DAS spec values copied from `MainnetEthSpec`
type MinCustodyRequirement = U4;
type DataColumnSubnetCount = U32;
type DataColumnSubnetCount = U64;
type DataColumnCount = U128;
type DataColumnsPerSubnet = U4;
type KzgCommitmentsInclusionProofDepth = U4;
Expand Down Expand Up @@ -566,7 +566,7 @@ impl EthSpec for GnosisEthSpec {
type MaxWithdrawalRequestsPerPayload = U16;
// DAS spec values copied from `MainnetEthSpec`
type MinCustodyRequirement = U4;
type DataColumnSubnetCount = U32;
type DataColumnSubnetCount = U64;
type DataColumnCount = U128;
type DataColumnsPerSubnet = U4;
type KzgCommitmentsInclusionProofDepth = U4;
Expand Down

0 comments on commit 6f7e4e9

Please sign in to comment.