Skip to content

Commit

Permalink
Disable requirement for EIP-7251 configuration in Electra config (#8188)
Browse files Browse the repository at this point in the history
  • Loading branch information
zilm13 authored Apr 11, 2024
1 parent c4b9a7a commit ad5e63f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ public class ElectraBuilder implements ForkConfigBuilder<SpecConfigDeneb, SpecCo

private Bytes4 electraForkVersion;
private UInt64 electraForkEpoch;
private UInt64 minPerEpochChurnLimitElectra;
private UInt64 maxPerEpochActivationExitChurnLimit;
// TODO: remove default when EIP-7251 become part of the Electra
private UInt64 minPerEpochChurnLimitElectra = UInt64.ZERO;
// TODO: remove default when EIP-7251 become part of the Electra
private UInt64 maxPerEpochActivationExitChurnLimit = UInt64.ZERO;
private Integer maxDepositReceiptsPerPayload;
private Integer maxExecutionLayerExits;
private UInt64 minActivationBalance;
Expand Down

0 comments on commit ad5e63f

Please sign in to comment.