Skip to content

Commit

Permalink
transfer-contract: Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
moCello committed Aug 9, 2024
1 parent 3eab20c commit 5fb6900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/transfer/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ impl TransferState {
self.nullifiers.extend(phoenix_tx.nullifiers());

// verify the phoenix-circuit
if !verify_tx_proof(&phoenix_tx) {
if !verify_tx_proof(phoenix_tx) {
panic!("Invalid transaction proof!");
}

Expand Down

0 comments on commit 5fb6900

Please sign in to comment.