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 f359a8c commit 1e462c4Copy full SHA for 1e462c4
crates/ethcore/src/engines/hbbft/hbbft_engine.rs
@@ -342,8 +342,11 @@ impl IoHandler<()> for TransitionHandler {
342
}
343
344
fn timeout(&self, io: &IoContext<()>, timer: TimerToken) {
345
+
346
347
if timer == ENGINE_TIMEOUT_TOKEN {
348
if let Err(err) = self.handle_engine(io) {
349
+ //todo: this gets called very early and results in "client not available" error message.
350
error!(target: "consensus", "Error in Honey Badger Engine timeout handler: {:?}", err);
351
352
} else if timer == ENGINE_SHUTDOWN {
0 commit comments