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.
2 parents bd6bb82 + bc2c28e commit 08ed547Copy full SHA for 08ed547
tycho-test/src/execution/execution_simulator.rs
@@ -199,10 +199,7 @@ impl ExecutionSimulator {
199
let (simulation_ids, simulation_inputs): (Vec<String>, Vec<SimulationInput>) =
200
inputs.into_iter().unzip();
201
202
- // If we use the current block number we will simulate over the state of the parent of this
203
- // block. We want to simulate over the state of the current block, so we need to simulate in
204
- // the next block
205
- let block_id = BlockId::from(block.number() + 1u64);
+ let block_id = BlockId::from(block.number());
206
207
let client = ClientBuilder::default().http(self.rpc_url.parse()?);
208
0 commit comments