Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WEB3-315: feat: Add EVM Event support to Steel #409

Merged
merged 18 commits into from
Feb 11, 2025
Merged
Prev Previous commit
Next Next commit
fix warning
  • Loading branch information
Wollac committed Jan 23, 2025
commit 369c8b38ea4e8461009c3d226f2531c08d101f4e
1 change: 1 addition & 0 deletions crates/steel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ pub trait EvmDatabase: RevmDatabase {

/// Checks if a bloom filter matches the given filter parameters.
// TODO: Move to `event` once no longer unstable
#[allow(dead_code)]
#[inline]
pub(crate) fn matches_filter(bloom: Bloom, filter: &Filter) -> bool {
FilteredParams::matches_address(bloom, &FilteredParams::address_filter(&filter.address))
Expand Down
Loading