Skip to content

Commit

Permalink
fix: skip s value check in trace_filter recovery (paradigmxyz#8200)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored May 10, 2024
1 parent ef01d50 commit bab96be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rpc/rpc/src/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ where
let mut transaction_indices = HashSet::new();
let mut highest_matching_index = 0;
for (tx_idx, tx) in block.body.iter().enumerate() {
let from = tx.recover_signer().ok_or(BlockError::InvalidSignature)?;
let from = tx.recover_signer_unchecked().ok_or(BlockError::InvalidSignature)?;
let to = tx.to();
if matcher.matches(from, to) {
let idx = tx_idx as u64;
Expand Down

0 comments on commit bab96be

Please sign in to comment.