We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afa809 commit d8ffad2Copy full SHA for d8ffad2
src/tasks/block/sim.rs
@@ -132,7 +132,8 @@ impl Simulator {
132
) -> eyre::Result<BuiltBlock> {
133
let concurrency_limit = self.config.concurrency_limit();
134
let latest_block_number = BlockNumber::from(block_env.number.to::<u64>() - 1);
135
- let host_block_number = self.config.constants.rollup_block_to_host_block_num(latest_block_number);
+ let host_block_number =
136
+ self.config.constants.rollup_block_to_host_block_num(latest_block_number);
137
138
let host_db = self.create_host_db(host_block_number).await;
139
let host_env = HostEnv::<_, NoOpInspector>::new(
0 commit comments