diff --git a/crates/pool/src/chain.rs b/crates/pool/src/chain.rs index 2d885bd58..4709046f4 100644 --- a/crates/pool/src/chain.rs +++ b/crates/pool/src/chain.rs @@ -449,7 +449,6 @@ impl Chain

{ "Log with unknown entry point address: {:?}. Ignoring.", log.address ); - continue; } } } diff --git a/crates/pool/src/task.rs b/crates/pool/src/task.rs index 1313cf823..1a610acdf 100644 --- a/crates/pool/src/task.rs +++ b/crates/pool/src/task.rs @@ -120,10 +120,7 @@ impl Task for PoolTask { mempools.insert(pool_config.entry_point, pool); } EntryPointVersion::Unspecified => { - bail!( - "Unsupported entry point version: {:?}", - pool_config.entry_point_version - ); + bail!("Unsupported entry point version"); } } }