Skip to content

Commit 866314e

Browse files
committed
Remove some blob references
1 parent 04e5602 commit 866314e

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

beacon_node/beacon_chain/src/errors.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,6 @@ pub enum BlockProductionError {
258258
BlockingFailed(execution_layer::Error),
259259
TerminalPoWBlockLookupFailed(execution_layer::Error),
260260
GetPayloadFailed(execution_layer::Error),
261-
GetBlobsFailed(execution_layer::Error),
262-
BlobPayloadMismatch {
263-
blob_block_hash: ExecutionBlockHash,
264-
payload_block_hash: ExecutionBlockHash,
265-
},
266261
FailedToReadFinalizedBlock(store::Error),
267262
MissingFinalizedBlock(Hash256),
268263
BlockTooLarge(usize),

beacon_node/beacon_chain/src/metrics.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -972,22 +972,6 @@ lazy_static! {
972972
"beacon_pre_finalization_block_lookup_count",
973973
"Number of block roots subject to single block lookups"
974974
);
975-
976-
/*
977-
* Blob sidecar Verification
978-
*/
979-
pub static ref BLOBS_SIDECAR_PROCESSING_REQUESTS: Result<IntCounter> = try_create_int_counter(
980-
"beacon_blobs_sidecar_processing_requests_total",
981-
"Count of all blob sidecars submitted for processing"
982-
);
983-
pub static ref BLOBS_SIDECAR_PROCESSING_SUCCESSES: Result<IntCounter> = try_create_int_counter(
984-
"beacon_blobs_sidecar_processing_successes_total",
985-
"Number of blob sidecars verified for gossip"
986-
);
987-
pub static ref BLOBS_SIDECAR_GOSSIP_VERIFICATION_TIMES: Result<Histogram> = try_create_histogram(
988-
"beacon_blobs_sidecar_gossip_verification_seconds",
989-
"Full runtime of blob sidecars gossip verification"
990-
);
991975
}
992976

993977
// Fifth lazy-static block is used to account for macro recursion limit.

0 commit comments

Comments
 (0)