File tree Expand file tree Collapse file tree 2 files changed +0
-21
lines changed
beacon_node/beacon_chain/src Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -258,11 +258,6 @@ pub enum BlockProductionError {
258
258
BlockingFailed ( execution_layer:: Error ) ,
259
259
TerminalPoWBlockLookupFailed ( execution_layer:: Error ) ,
260
260
GetPayloadFailed ( execution_layer:: Error ) ,
261
- GetBlobsFailed ( execution_layer:: Error ) ,
262
- BlobPayloadMismatch {
263
- blob_block_hash : ExecutionBlockHash ,
264
- payload_block_hash : ExecutionBlockHash ,
265
- } ,
266
261
FailedToReadFinalizedBlock ( store:: Error ) ,
267
262
MissingFinalizedBlock ( Hash256 ) ,
268
263
BlockTooLarge ( usize ) ,
Original file line number Diff line number Diff line change @@ -972,22 +972,6 @@ lazy_static! {
972
972
"beacon_pre_finalization_block_lookup_count" ,
973
973
"Number of block roots subject to single block lookups"
974
974
) ;
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
- ) ;
991
975
}
992
976
993
977
// Fifth lazy-static block is used to account for macro recursion limit.
You can’t perform that action at this time.
0 commit comments