-
Notifications
You must be signed in to change notification settings - Fork 877
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fleet mode #6003
Fleet mode #6003
Conversation
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
|
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
…fleet-mode Signed-off-by: Karim TAAM <[email protected]>
besu/src/main/java/org/hyperledger/besu/services/SynchronizationServiceImpl.java
Fixed
Show fixed
Hide fixed
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
This reverts commit 8f5d67b, reversing changes made to cf5138e. Signed-off-by: Karim TAAM <[email protected]>
Signed-off-by: Karim TAAM <[email protected]>
e201183
to
7c1da83
Compare
public void setMiningCoordinator(final MiningCoordinator miningCoordinator) { | ||
this.miningCoordinator = miningCoordinator; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this here? future use perhaps?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems to be useless I removed it
*/ | ||
public BesuConfigurationImpl(final Path dataPath, final Path storagePath) { | ||
this.dataPath = dataPath; | ||
public BesuConfigurationImpl(final Path storagePath, final Path dataPath) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
switching the order of these params can lead to problems the compiler won't highlight. I see 6 usages of this constructor in the codebase, but none of them are changed in this pr...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clearly seems to be dangerous and useless, I will revert that
6043342
to
033e3c8
Compare
Signed-off-by: delehef <[email protected]> Signed-off-by: garyschulte <[email protected]>
Signed-off-by: Sally MacFarlane <[email protected]> Signed-off-by: garyschulte <[email protected]>
…he correct number of times (hyperledger#6259) * Test that the BlockAwareOperationTracer are invoked the correct number of times * Remove redundant calls to traceEndBlock Signed-off-by: Fabio Di Fabio <[email protected]> Signed-off-by: garyschulte <[email protected]>
Signed-off-by: garyschulte <[email protected]>
Signed-off-by: garyschulte <[email protected]>
033e3c8
to
9ed1166
Compare
Signed-off-by: garyschulte <[email protected]>
Signed-off-by: garyschulte <[email protected]>
8b6aaf1
to
8880cfc
Compare
Signed-off-by: garyschulte <[email protected]>
8880cfc
to
1e091d6
Compare
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Signed-off-by: Karim Taam <[email protected]>
Closing for #6641 |
PR description
Added necessary plugin services and some light modifications to implement a plugin solution for the fleet mode feature.
Add modification in order to have fleet mode
Fixed Issue(s)