Skip to content

Commit bd61e77

Browse files
authored
Merge of #6631
2 parents e0273ef + 83bf40b commit bd61e77

File tree

5 files changed

+1
-389
lines changed

5 files changed

+1
-389
lines changed

beacon_node/beacon_chain/src/execution_payload.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
//! So, this module contains functions that one might expect to find in other crates, but they live
88
//! here for good reason.
99
10-
use crate::otb_verification_service::OptimisticTransitionBlock;
1110
use crate::{
1211
BeaconChain, BeaconChainError, BeaconChainTypes, BlockError, BlockProductionError,
1312
ExecutionPayloadError,
@@ -284,9 +283,6 @@ pub async fn validate_merge_block<'a, T: BeaconChainTypes>(
284283
"block_hash" => ?execution_payload.parent_hash(),
285284
"msg" => "the terminal block/parent was unavailable"
286285
);
287-
// Store Optimistic Transition Block in Database for later Verification
288-
OptimisticTransitionBlock::from_block(block)
289-
.persist_in_store::<T, _>(&chain.store)?;
290286
Ok(())
291287
} else {
292288
Err(ExecutionPayloadError::UnverifiedNonOptimisticCandidate.into())

beacon_node/beacon_chain/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ pub mod observed_block_producers;
4747
pub mod observed_data_sidecars;
4848
pub mod observed_operations;
4949
mod observed_slashable;
50-
pub mod otb_verification_service;
5150
mod persisted_beacon_chain;
5251
mod persisted_fork_choice;
5352
mod pre_finalization_cache;

0 commit comments

Comments
 (0)