Skip to content

Commit

Permalink
clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anupsv committed Jan 27, 2025
1 parent 9cf384d commit 6b66c6b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions kzg/src/kzg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ pub struct KZG {
expanded_roots_of_unity: Vec<Fr>,
}

impl Default for KZG {
fn default() -> Self {
Self::new()
}
}

impl KZG {
pub fn new() -> Self {
Self {
Expand Down

0 comments on commit 6b66c6b

Please sign in to comment.