feat: remove PartialEq+Eq from ProviderError and all others affected (#13592)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Glow
2025-01-04 17:27:35 +07:00
committed by GitHub
parent 91d09de440
commit 86399e2aea
12 changed files with 129 additions and 135 deletions

View File

@ -778,7 +778,7 @@ mod tests {
);
let db_senders = provider.senders_by_tx_range(range);
assert_eq!(db_senders, Ok(vec![]));
assert!(matches!(db_senders, Ok(ref v) if v.is_empty()));
}
}