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 8946e15 commit 3620a99Copy full SHA for 3620a99
crates/optimism/flashblocks/src/service.rs
@@ -320,13 +320,12 @@ where
320
if let Some(args) = this.build_args() {
321
let now = Instant::now();
322
323
- // Signal that a flashblock build has started
324
-
325
let fb_info = FlashBlockBuildInfo {
326
parent_hash: args.base.parent_hash,
327
index: args.last_flashblock_index,
328
block_number: args.base.block_number,
329
};
+ // Signal that a flashblock build has started with build metadata
330
let _ = this.build_state_tx.send(Some(fb_info));
331
let (tx, rx) = oneshot::channel();
332
let builder = this.builder.clone();
0 commit comments