Skip to content

Commit

Permalink
unnecessary clone
Browse files Browse the repository at this point in the history
  • Loading branch information
ec2 committed Jan 10, 2024
1 parent 87927b1 commit 275202a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prover/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ where
state.committee_update_verifier.pk(),
state.committee_update_verifier.config_path(),
None,
&vec![snark.clone()],
&vec![snark],
)
.map_err(JsonRpcError::internal)?;

Expand Down Expand Up @@ -158,7 +158,7 @@ where
state.step_verifier.pk(),
state.step_verifier.config_path(),
None,
&vec![snark.clone()],
&vec![snark],
)
.map_err(JsonRpcError::internal)?;

Expand Down

0 comments on commit 275202a

Please sign in to comment.