Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kroos47 committed Oct 31, 2023
1 parent bc55454 commit e301029
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions core/src/kate_commitment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ pub mod v2 {
impl fmt::Debug for KateCommitment {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let commitment = self.commitment.as_slice();
let data_root = self
.data_root
.as_ref();
let data_root = self.data_root.as_ref();

f.debug_struct("KateCommitment(v2)")
.field("rows", &self.rows)
Expand All @@ -92,5 +90,4 @@ pub mod v2 {
.finish()
}
}

}

0 comments on commit e301029

Please sign in to comment.