Skip to content

Commit 79ca0da

Browse files
committed
clippy
1 parent 031e868 commit 79ca0da

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/tasks/block/sim.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ use tokio::{
1717
},
1818
task::JoinHandle,
1919
};
20-
use tracing::trace;
2120
use trevm::revm::{
2221
context::BlockEnv,
2322
database::{AlloyDB, WrapDatabaseAsync},
@@ -207,9 +206,7 @@ impl Simulator {
207206
let deadline =
208207
Instant::now() + Duration::from_secs(remaining) - Duration::from_millis(1500);
209208

210-
let buffered_deadline = deadline.max(Instant::now());
211-
212-
buffered_deadline
209+
deadline.max(Instant::now())
213210
}
214211

215212
/// Creates an `AlloyDB` instance from the rollup provider.

0 commit comments

Comments
 (0)