-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move bellatrix configuration to be comparable to altair (#6348)
Partially addresses #5680 Signed-off-by: Paul Harris <[email protected]>
- Loading branch information
Showing
5 changed files
with
317 additions
and
141 deletions.
There are no files selected for viewing
100 changes: 100 additions & 0 deletions
100
ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/DelegatingSpecConfigBellatrix.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* | ||
* Copyright ConsenSys Software Inc., 2022 | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package tech.pegasys.teku.spec.config; | ||
|
||
import java.util.Optional; | ||
import org.apache.tuweni.bytes.Bytes32; | ||
import org.apache.tuweni.units.bigints.UInt256; | ||
import tech.pegasys.teku.infrastructure.bytes.Bytes4; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
|
||
public class DelegatingSpecConfigBellatrix extends DelegatingSpecConfigAltair | ||
implements SpecConfigBellatrix { | ||
private final SpecConfigBellatrix specConfigBellatrix; | ||
|
||
public DelegatingSpecConfigBellatrix(final SpecConfigBellatrix specConfig) { | ||
super(specConfig); | ||
this.specConfigBellatrix = SpecConfigBellatrix.required(specConfig); | ||
} | ||
|
||
@Override | ||
public Optional<SpecConfigBellatrix> toVersionBellatrix() { | ||
return Optional.of(this); | ||
} | ||
|
||
@Override | ||
public Bytes4 getBellatrixForkVersion() { | ||
return specConfigBellatrix.getBellatrixForkVersion(); | ||
} | ||
|
||
@Override | ||
public UInt64 getBellatrixForkEpoch() { | ||
return specConfigBellatrix.getBellatrixForkEpoch(); | ||
} | ||
|
||
@Override | ||
public UInt64 getInactivityPenaltyQuotientBellatrix() { | ||
return specConfigBellatrix.getInactivityPenaltyQuotientBellatrix(); | ||
} | ||
|
||
@Override | ||
public int getMinSlashingPenaltyQuotientBellatrix() { | ||
return specConfigBellatrix.getMinSlashingPenaltyQuotientBellatrix(); | ||
} | ||
|
||
@Override | ||
public int getProportionalSlashingMultiplierBellatrix() { | ||
return specConfigBellatrix.getProportionalSlashingMultiplierBellatrix(); | ||
} | ||
|
||
@Override | ||
public int getMaxBytesPerTransaction() { | ||
return specConfigBellatrix.getMaxBytesPerTransaction(); | ||
} | ||
|
||
@Override | ||
public int getMaxTransactionsPerPayload() { | ||
return specConfigBellatrix.getMaxTransactionsPerPayload(); | ||
} | ||
|
||
@Override | ||
public int getBytesPerLogsBloom() { | ||
return specConfigBellatrix.getBytesPerLogsBloom(); | ||
} | ||
|
||
@Override | ||
public int getMaxExtraDataBytes() { | ||
return specConfigBellatrix.getMaxExtraDataBytes(); | ||
} | ||
|
||
@Override | ||
public UInt64 getTerminalBlockHashActivationEpoch() { | ||
return specConfigBellatrix.getTerminalBlockHashActivationEpoch(); | ||
} | ||
|
||
@Override | ||
public Bytes32 getTerminalBlockHash() { | ||
return specConfigBellatrix.getTerminalBlockHash(); | ||
} | ||
|
||
@Override | ||
public UInt256 getTerminalTotalDifficulty() { | ||
return specConfigBellatrix.getTerminalTotalDifficulty(); | ||
} | ||
|
||
@Override | ||
public int getSafeSlotsToImportOptimistically() { | ||
return specConfigBellatrix.getSafeSlotsToImportOptimistically(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.