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 2b57200 commit 1532d5cCopy full SHA for 1532d5c
core/src/consensus/tendermint/worker.rs
@@ -593,6 +593,7 @@ impl Worker {
593
}
594
595
fn move_to_step(&mut self, state: TendermintState, is_restoring: bool) {
596
+ ctrace!(ENGINE, "Transition to {:?} triggered.", state);
597
let prev_step = mem::replace(&mut self.step, state.clone());
598
if !is_restoring {
599
self.backup();
@@ -846,7 +847,6 @@ impl Worker {
846
847
};
848
849
if let Some(step) = next_step {
- ctrace!(ENGINE, "Transition to {:?} triggered.", step);
850
self.move_to_step(step, is_restoring);
851
return
852
0 commit comments