Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
ftheirs committed Nov 25, 2024
1 parent 2b68e32 commit d4f1c22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/rpc/src/pathfinder/methods/get_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,9 @@ mod tests {
contract_address: contract_address!("0xdeadbeef"),
keys: vec![storage_address_bytes!(b"storage addr 0")],
};
let err = get_proof(context, input).await.unwrap_err();
let err = get_proof(context, input).await;
println!("Error: {:?}", err);
let err = err.unwrap_err();
assert_matches::assert_matches!(err, GetProofError::ProofMissing);
}
}

0 comments on commit d4f1c22

Please sign in to comment.