Skip to content

Commit

Permalink
fix height in fmt (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
hvanz authored Dec 13, 2023
1 parent a0ebc14 commit e010cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/round/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ where
#[cfg_attr(coverage_nightly, coverage(off))]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("State")
.field("height", &self.round)
.field("height", &self.height)
.field("round", &self.round)
.field("step", &self.step)
.field("locked", &self.locked)
Expand Down

0 comments on commit e010cb1

Please sign in to comment.