mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-31 18:18:29 -05:00
fix: skip s value check in trace_filter recovery (#8200)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user