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 4021011 commit 0ef3f4bCopy full SHA for 0ef3f4b
src/main.rs
@@ -152,8 +152,10 @@ fn build_flashblocks_pipeline(
152
let flashblock_building_pipeline_steps = if let Some(ref signer) =
153
cli_args.builder_signer
154
{
155
- flashblock_building_pipeline_steps
156
- .with_epilogue(BuilderEpilogue::with_signer(signer.clone().into()))
+ flashblock_building_pipeline_steps.with_epilogue(
+ BuilderEpilogue::with_signer(signer.clone().into())
157
+ .with_message(|block| format!("Block Number: {}", block.number())),
158
+ )
159
} else {
160
warn!("BUILDER_SECRET_KEY is not specified, skipping builder transactions");
161
flashblock_building_pipeline_steps
0 commit comments