-
Notifications
You must be signed in to change notification settings - Fork 881
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Round change upon f+1 RC messages (experimental option) (#7838)
* Fix incorrect duration for THREE_MINUTES from 1 minute to 3 minutes Signed-off-by: Bhanu Pulluri <[email protected]> * Round change upon f+1 RC messages (experimental option) Signed-off-by: Bhanu Pulluri <[email protected]> * Update besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java Co-authored-by: Matt Whitehead <[email protected]> Signed-off-by: Bhanu Pulluri <[email protected]> * revert an unrelated fix already merged to main Signed-off-by: Bhanu Pulluri <[email protected]> * update return value description Signed-off-by: Bhanu Pulluri <[email protected]> * fix logging level for couple of logs Signed-off-by: Bhanu Pulluri <[email protected]> * Review changes , added tests Signed-off-by: Bhanu Pulluri <[email protected]> * Merge and fix controller builder test context Signed-off-by: Bhanu Pulluri <[email protected]> * minor fix to import missing class after merging main Signed-off-by: Bhanu Pulluri <[email protected]> * Add missing function header comments Signed-off-by: Bhanu Pulluri <[email protected]> --------- Signed-off-by: Bhanu Pulluri <[email protected]> Signed-off-by: Bhanu Pulluri <[email protected]> Co-authored-by: Bhanu Pulluri <[email protected]> Co-authored-by: Matt Whitehead <[email protected]> Co-authored-by: Sally MacFarlane <[email protected]> Co-authored-by: Jason Frame <[email protected]> Co-authored-by: Matt Whitehead <[email protected]>
- Loading branch information
1 parent
ac0265f
commit 81e1ab9
Showing
12 changed files
with
383 additions
and
49 deletions.
There are no files selected for viewing
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
49 changes: 49 additions & 0 deletions
49
besu/src/main/java/org/hyperledger/besu/cli/options/QBFTOptions.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,49 @@ | ||
/* | ||
* Copyright contributors to Besu. | ||
* | ||
* 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.cli.options.unstable; | ||
|
||
import picocli.CommandLine; | ||
|
||
/** Handles configuration options for QBFT consensus */ | ||
public class QBFTOptions { | ||
|
||
/** Default constructor */ | ||
private QBFTOptions() {} | ||
|
||
/** | ||
* Create a new instance of QBFTOptions | ||
* | ||
* @return a new instance of QBFTOptions | ||
*/ | ||
public static QBFTOptions create() { | ||
return new QBFTOptions(); | ||
} | ||
|
||
@CommandLine.Option( | ||
names = {"--Xqbft-enable-early-round-change"}, | ||
description = | ||
"Enable early round change upon receiving f+1 valid future Round Change messages from different validators (experimental)", | ||
hidden = true) | ||
private boolean enableEarlyRoundChange = false; | ||
|
||
/** | ||
* Is early round change enabled boolean. | ||
* | ||
* @return true if early round change is enabled | ||
*/ | ||
public boolean isEarlyRoundChangeEnabled() { | ||
return enableEarlyRoundChange; | ||
} | ||
} |
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
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
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
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
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
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
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.