Skip to content

Commit 0ef3f4b

Browse files
authored
Use correct builder messages (#29)
* Use correct message * Use correct message
1 parent 4021011 commit 0ef3f4b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,10 @@ fn build_flashblocks_pipeline(
152152
let flashblock_building_pipeline_steps = if let Some(ref signer) =
153153
cli_args.builder_signer
154154
{
155-
flashblock_building_pipeline_steps
156-
.with_epilogue(BuilderEpilogue::with_signer(signer.clone().into()))
155+
flashblock_building_pipeline_steps.with_epilogue(
156+
BuilderEpilogue::with_signer(signer.clone().into())
157+
.with_message(|block| format!("Block Number: {}", block.number())),
158+
)
157159
} else {
158160
warn!("BUILDER_SECRET_KEY is not specified, skipping builder transactions");
159161
flashblock_building_pipeline_steps

0 commit comments

Comments
 (0)