Skip to content

Commit e588a71

Browse files
authored
Merge pull request #499 from MozirDmitriy/main
fix: committee mismatch trace in on_batch_msg to use structured fields
2 parents e9f098b + d97de14 commit e588a71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timeboost-sequencer/src/decrypt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ impl Worker {
760760
let round = batch.round.num();
761761
let committee_id = batch.round.committee();
762762
if committee_id != self.current {
763-
trace!(node = %self.label, %committee_id, "target committee: {} current: {}", round, self.current);
763+
trace!(node = %self.label, %committee_id, current=%self.current, round=%round, "not current committee");
764764
return Ok(());
765765
}
766766
self.key_stores

0 commit comments

Comments
 (0)