Skip to content

Commit

Permalink
chore: Appease Clippy-sama
Browse files Browse the repository at this point in the history
  • Loading branch information
netrome committed Jan 31, 2025
1 parent ec0a924 commit bbf6361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fraud_proofs/global_merkle_root/storage/src/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,12 +505,12 @@ mod tests {
.process_output(tx_pointer, utxo_id, &inputs, &output)
.unwrap();

let coin_was_inserted_before_process_input = !storage_update_tx
let coin_was_inserted_before_process_input = storage_update_tx
.storage
.storage_as_ref::<Coins>()
.get(&utxo_id)
.unwrap()
.is_none();
.is_some();

storage_update_tx.process_input(&input).unwrap();

Expand Down

0 comments on commit bbf6361

Please sign in to comment.