Skip to content

Commit

Permalink
Clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samtay committed Jul 13, 2023
1 parent 0e5b36b commit cc7b07b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sunscreen_runtime/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ where
&'r self,
program: &'p CompiledZkpProgram,
) -> ProofBuilder<'r, 'p, T, B> {
ProofBuilder::new(&self, program)
ProofBuilder::new(self, program)
}

/**
Expand Down Expand Up @@ -555,7 +555,7 @@ where
&'r self,
program: &'p CompiledZkpProgram,
) -> VerificationBuilder<'r, 'p, '_, T, B> {
VerificationBuilder::new(&self, program)
VerificationBuilder::new(self, program)
}
}

Expand Down

0 comments on commit cc7b07b

Please sign in to comment.