We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f901d50 commit 5f041ddCopy full SHA for 5f041dd
src/server.rs
@@ -611,15 +611,15 @@ impl RollupBoostServer {
611
return match l2_fut.await {
612
Ok(payload) => {
613
self.probes.set_health(Health::Healthy);
614
- tracing::Span::current().record("payload_source", "L2");
615
- counter!("rpc.blocks_created", "source" => "L2").increment(1);
+ tracing::Span::current().record("payload_source", "l2");
+ counter!("rpc.blocks_created", "source" => "l2").increment(1);
616
617
let execution_payload = ExecutionPayload::from(payload.clone());
618
info!(
619
message = "returning block",
620
"hash" = %execution_payload.block_hash(),
621
"number" = %execution_payload.block_number(),
622
- context = "L2",
+ context = "l2",
623
%payload_id,
624
);
625
0 commit comments