Skip to content

Commit

Permalink
clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Wollac committed Dec 11, 2023
1 parent 57d349b commit 5c1af64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/host/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,5 +237,5 @@ fn verify_state_trie(

fn account_deleted(key: &[u8], proof: &[impl AsRef<[u8]>]) -> Result<bool> {
let proof_nodes = mpt::parse_proof(proof).context("invalid encoding")?;
mpt::is_not_included(key, &proof_nodes)
mpt::is_not_included(&key, &proof_nodes)
}

0 comments on commit 5c1af64

Please sign in to comment.