We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653b480 commit 9d65d27Copy full SHA for 9d65d27
crates/ethcore/src/engines/hbbft/hbbft_peers_handler.rs
@@ -81,6 +81,11 @@ impl HbbftPeersHandler {
81
.as_full_client()
82
.ok_or("BlockchainClient required")?;
83
84
+
85
+ if block_chain_client.is_major_syncing() {
86
+ return Ok(());
87
+ }
88
89
match get_validator_available_since(engine_client.as_ref(), &mining_address) {
90
Ok(s) => {
91
if s.is_zero() {
0 commit comments