QbftForksSchedulesFactory.java
/*
* Copyright Hyperledger Besu Contributors.
*
* 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.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.consensus.qbft;
import org.hyperledger.besu.config.GenesisConfigOptions;
import org.hyperledger.besu.config.QbftConfigOptions;
import org.hyperledger.besu.config.QbftFork;
import org.hyperledger.besu.config.QbftFork.VALIDATOR_SELECTION_MODE;
import org.hyperledger.besu.consensus.common.ForkSpec;
import org.hyperledger.besu.consensus.common.ForksSchedule;
import org.hyperledger.besu.consensus.common.ForksScheduleFactory;
import java.util.List;
import java.util.Optional;
/** The Qbft forks schedules factory. */
public class QbftForksSchedulesFactory {
/**
* Create forks schedule.
*
* @param genesisConfig the genesis config
* @return the forks schedule
*/
public static ForksSchedule<QbftConfigOptions> create(final GenesisConfigOptions genesisConfig) {
return ForksScheduleFactory.create(
genesisConfig.getQbftConfigOptions(),
genesisConfig.getTransitions().getQbftForks(),
QbftForksSchedulesFactory::createQbftConfigOptions);
}
private static QbftConfigOptions createQbftConfigOptions(
final ForkSpec<QbftConfigOptions> lastSpec, final QbftFork fork) {
final MutableQbftConfigOptions bftConfigOptions =
new MutableQbftConfigOptions(lastSpec.getValue());
fork.getBlockPeriodSeconds().ifPresent(bftConfigOptions::setBlockPeriodSeconds);
fork.getBlockRewardWei().ifPresent(bftConfigOptions::setBlockRewardWei);
if (fork.isMiningBeneficiaryConfigured()) {
// Only override if mining beneficiary is explicitly configured
bftConfigOptions.setMiningBeneficiary(fork.getMiningBeneficiary());
}
if (fork.getValidatorSelectionMode().isPresent()) {
final VALIDATOR_SELECTION_MODE mode = fork.getValidatorSelectionMode().get();
if (mode == VALIDATOR_SELECTION_MODE.BLOCKHEADER) {
final Optional<List<String>> optionalValidators = fork.getValidators();
if (optionalValidators.isEmpty() || optionalValidators.get().isEmpty()) {
throw new IllegalStateException(
"QBFT transition to blockheader mode requires a validators list containing at least one validator");
}
bftConfigOptions.setValidatorContractAddress(Optional.empty());
} else if (mode == VALIDATOR_SELECTION_MODE.CONTRACT
&& fork.getValidatorContractAddress().isPresent()) {
bftConfigOptions.setValidatorContractAddress(fork.getValidatorContractAddress());
} else if (fork.getValidatorContractAddress().isEmpty()) {
throw new IllegalStateException(
"QBFT transition has config with contract mode but no contract address");
}
}
return bftConfigOptions;
}
}