Don't return errors when fork choice fails (#3370)
## Issue Addressed
NA
## Proposed Changes
There are scenarios where the only viable head will have an invalid execution payload, in this scenario the `get_head` function on `proto_array` will return an error. We must recover from this scenario by importing blocks from the network.
This PR stops `BeaconChain::recompute_head` from returning an error so that we can't accidentally start down-scoring peers or aborting block import just because the current head has an invalid payload.
## Reviewer Notes
The following changes are included:
1. Allow `fork_choice.get_head` to fail gracefully in `BeaconChain::process_block` when trying to update the `early_attester_cache`; simply don't add the block to the cache rather than aborting the entire process.
1. Don't return an error from `BeaconChain::recompute_head_at_current_slot` and `BeaconChain::recompute_head` to defensively prevent calling functions from aborting any process just because the fork choice function failed to run.
- This should have practically no effect, since most callers were still continuing if recomputing the head failed.
- The outlier is that the API will return 200 rather than a 500 when fork choice fails.
1. Add the `ProtoArrayForkChoice::set_all_blocks_to_optimistic` function to recover from the scenario where we've rebooted and the persisted fork choice has an invalid head.
This commit is contained in:
@@ -2805,32 +2805,38 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
if !payload_verification_status.is_optimistic()
|
||||
&& block.slot() + EARLY_ATTESTER_CACHE_HISTORIC_SLOTS >= current_slot
|
||||
{
|
||||
let new_head_root = fork_choice
|
||||
.get_head(current_slot, &self.spec)
|
||||
.map_err(BeaconChainError::from)?;
|
||||
|
||||
if new_head_root == block_root {
|
||||
if let Some(proto_block) = fork_choice.get_block(&block_root) {
|
||||
if let Err(e) = self.early_attester_cache.add_head_block(
|
||||
block_root,
|
||||
signed_block.clone(),
|
||||
proto_block,
|
||||
&state,
|
||||
&self.spec,
|
||||
) {
|
||||
match fork_choice.get_head(current_slot, &self.spec) {
|
||||
// This block became the head, add it to the early attester cache.
|
||||
Ok(new_head_root) if new_head_root == block_root => {
|
||||
if let Some(proto_block) = fork_choice.get_block(&block_root) {
|
||||
if let Err(e) = self.early_attester_cache.add_head_block(
|
||||
block_root,
|
||||
signed_block.clone(),
|
||||
proto_block,
|
||||
&state,
|
||||
&self.spec,
|
||||
) {
|
||||
warn!(
|
||||
self.log,
|
||||
"Early attester cache insert failed";
|
||||
"error" => ?e
|
||||
);
|
||||
}
|
||||
} else {
|
||||
warn!(
|
||||
self.log,
|
||||
"Early attester cache insert failed";
|
||||
"error" => ?e
|
||||
"Early attester block missing";
|
||||
"block_root" => ?block_root
|
||||
);
|
||||
}
|
||||
} else {
|
||||
warn!(
|
||||
self.log,
|
||||
"Early attester block missing";
|
||||
"block_root" => ?block_root
|
||||
);
|
||||
}
|
||||
// This block did not become the head, nothing to do.
|
||||
Ok(_) => (),
|
||||
Err(e) => error!(
|
||||
self.log,
|
||||
"Failed to compute head during block import";
|
||||
"error" => ?e
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3608,16 +3614,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
|
||||
// Run fork choice since it's possible that the payload invalidation might result in a new
|
||||
// head.
|
||||
//
|
||||
// Don't return early though, since invalidating the justified checkpoint might cause an
|
||||
// error here.
|
||||
if let Err(e) = self.recompute_head_at_current_slot().await {
|
||||
crit!(
|
||||
self.log,
|
||||
"Failed to run fork choice routine";
|
||||
"error" => ?e,
|
||||
);
|
||||
}
|
||||
self.recompute_head_at_current_slot().await;
|
||||
|
||||
// Obtain the justified root from fork choice.
|
||||
//
|
||||
@@ -4262,14 +4259,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
}
|
||||
|
||||
// Run fork choice and signal to any waiting task that it has completed.
|
||||
if let Err(e) = self.recompute_head_at_current_slot().await {
|
||||
error!(
|
||||
self.log,
|
||||
"Fork choice error at slot start";
|
||||
"error" => ?e,
|
||||
"slot" => slot,
|
||||
);
|
||||
}
|
||||
self.recompute_head_at_current_slot().await;
|
||||
|
||||
// Send the notification regardless of fork choice success, this is a "best effort"
|
||||
// notification and we don't want block production to hit the timeout in case of error.
|
||||
|
||||
@@ -434,9 +434,15 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
/// Execute the fork choice algorithm and enthrone the result as the canonical head.
|
||||
///
|
||||
/// This method replaces the old `BeaconChain::fork_choice` method.
|
||||
pub async fn recompute_head_at_current_slot(self: &Arc<Self>) -> Result<(), Error> {
|
||||
let current_slot = self.slot()?;
|
||||
self.recompute_head_at_slot(current_slot).await
|
||||
pub async fn recompute_head_at_current_slot(self: &Arc<Self>) {
|
||||
match self.slot() {
|
||||
Ok(current_slot) => self.recompute_head_at_slot(current_slot).await,
|
||||
Err(e) => error!(
|
||||
self.log,
|
||||
"No slot when recomputing head";
|
||||
"error" => ?e
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
/// Execute the fork choice algorithm and enthrone the result as the canonical head.
|
||||
@@ -445,7 +451,13 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
/// different slot to the wall-clock can be useful for pushing fork choice into the next slot
|
||||
/// *just* before the start of the slot. This ensures that block production can use the correct
|
||||
/// head value without being delayed.
|
||||
pub async fn recompute_head_at_slot(self: &Arc<Self>, current_slot: Slot) -> Result<(), Error> {
|
||||
///
|
||||
/// This function purposefully does *not* return a `Result`. It's possible for fork choice to
|
||||
/// fail to update if there is only one viable head and it has an invalid execution payload. In
|
||||
/// such a case it's critical that the `BeaconChain` keeps importing blocks so that the
|
||||
/// situation can be rectified. We avoid returning an error here so that calling functions
|
||||
/// can't abort block import because an error is returned here.
|
||||
pub async fn recompute_head_at_slot(self: &Arc<Self>, current_slot: Slot) {
|
||||
metrics::inc_counter(&metrics::FORK_CHOICE_REQUESTS);
|
||||
let _timer = metrics::start_timer(&metrics::FORK_CHOICE_TIMES);
|
||||
|
||||
@@ -455,15 +467,15 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
move || chain.recompute_head_at_slot_internal(current_slot),
|
||||
"recompute_head_internal",
|
||||
)
|
||||
.await?
|
||||
.await
|
||||
{
|
||||
// Fork choice returned successfully and did not need to update the EL.
|
||||
Ok(None) => Ok(()),
|
||||
Ok(Ok(None)) => (),
|
||||
// Fork choice returned successfully and needed to update the EL. It has returned a
|
||||
// join-handle from when it spawned some async tasks. We should await those tasks.
|
||||
Ok(Some(join_handle)) => match join_handle.await {
|
||||
Ok(Ok(Some(join_handle))) => match join_handle.await {
|
||||
// The async task completed successfully.
|
||||
Ok(Some(())) => Ok(()),
|
||||
Ok(Some(())) => (),
|
||||
// The async task did not complete successfully since the runtime is shutting down.
|
||||
Ok(None) => {
|
||||
debug!(
|
||||
@@ -471,7 +483,6 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
"Did not update EL fork choice";
|
||||
"info" => "shutting down"
|
||||
);
|
||||
Err(Error::RuntimeShutdown)
|
||||
}
|
||||
// The async task did not complete successfully, tokio returned an error.
|
||||
Err(e) => {
|
||||
@@ -480,13 +491,24 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
"Did not update EL fork choice";
|
||||
"error" => ?e
|
||||
);
|
||||
Err(Error::TokioJoin(e))
|
||||
}
|
||||
},
|
||||
// There was an error recomputing the head.
|
||||
Err(e) => {
|
||||
Ok(Err(e)) => {
|
||||
metrics::inc_counter(&metrics::FORK_CHOICE_ERRORS);
|
||||
Err(e)
|
||||
error!(
|
||||
self.log,
|
||||
"Error whist recomputing head";
|
||||
"error" => ?e
|
||||
);
|
||||
}
|
||||
// There was an error spawning the task.
|
||||
Err(e) => {
|
||||
error!(
|
||||
self.log,
|
||||
"Failed to spawn recompute head task";
|
||||
"error" => ?e
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -220,14 +220,7 @@ async fn state_advance_timer<T: BeaconChainTypes>(
|
||||
return;
|
||||
}
|
||||
|
||||
if let Err(e) = beacon_chain.recompute_head_at_slot(next_slot).await {
|
||||
warn!(
|
||||
log,
|
||||
"Error updating fork choice for next slot";
|
||||
"error" => ?e,
|
||||
"slot" => next_slot,
|
||||
);
|
||||
}
|
||||
beacon_chain.recompute_head_at_slot(next_slot).await;
|
||||
|
||||
// Use a blocking task to avoid blocking the core executor whilst waiting for locks
|
||||
// in `ForkChoiceSignalTx`.
|
||||
|
||||
@@ -211,6 +211,20 @@ impl<E: EthSpec> Builder<EphemeralHarnessType<E>> {
|
||||
self.store = Some(store);
|
||||
self.store_mutator(Box::new(mutator))
|
||||
}
|
||||
|
||||
/// Manually restore from a given `MemoryStore`.
|
||||
pub fn resumed_ephemeral_store(
|
||||
mut self,
|
||||
store: Arc<HotColdDB<E, MemoryStore<E>, MemoryStore<E>>>,
|
||||
) -> Self {
|
||||
let mutator = move |builder: BeaconChainBuilder<_>| {
|
||||
builder
|
||||
.resume_from_db()
|
||||
.expect("should resume from database")
|
||||
};
|
||||
self.store = Some(store);
|
||||
self.store_mutator(Box::new(mutator))
|
||||
}
|
||||
}
|
||||
|
||||
impl<E: EthSpec> Builder<DiskHarnessType<E>> {
|
||||
@@ -1376,7 +1390,7 @@ where
|
||||
.process_block(Arc::new(block), CountUnrealized::True)
|
||||
.await?
|
||||
.into();
|
||||
self.chain.recompute_head_at_current_slot().await?;
|
||||
self.chain.recompute_head_at_current_slot().await;
|
||||
Ok(block_hash)
|
||||
}
|
||||
|
||||
@@ -1389,7 +1403,7 @@ where
|
||||
.process_block(Arc::new(block), CountUnrealized::True)
|
||||
.await?
|
||||
.into();
|
||||
self.chain.recompute_head_at_current_slot().await?;
|
||||
self.chain.recompute_head_at_current_slot().await;
|
||||
Ok(block_hash)
|
||||
}
|
||||
|
||||
|
||||
@@ -160,11 +160,7 @@ async fn chain_segment_full_segment() {
|
||||
.into_block_error()
|
||||
.expect("should import chain segment");
|
||||
|
||||
harness
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.expect("should run fork choice");
|
||||
harness.chain.recompute_head_at_current_slot().await;
|
||||
|
||||
assert_eq!(
|
||||
harness.head_block_root(),
|
||||
@@ -194,11 +190,7 @@ async fn chain_segment_varying_chunk_size() {
|
||||
.unwrap_or_else(|_| panic!("should import chain segment of len {}", chunk_size));
|
||||
}
|
||||
|
||||
harness
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.expect("should run fork choice");
|
||||
harness.chain.recompute_head_at_current_slot().await;
|
||||
|
||||
assert_eq!(
|
||||
harness.head_block_root(),
|
||||
@@ -729,11 +721,7 @@ async fn block_gossip_verification() {
|
||||
}
|
||||
|
||||
// Recompute the head to ensure we cache the latest view of fork choice.
|
||||
harness
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.unwrap();
|
||||
harness.chain.recompute_head_at_current_slot().await;
|
||||
|
||||
/*
|
||||
* This test ensures that:
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#![cfg(not(debug_assertions))]
|
||||
|
||||
use beacon_chain::{
|
||||
canonical_head::{CachedHead, CanonicalHead},
|
||||
test_utils::{BeaconChainHarness, EphemeralHarnessType},
|
||||
BeaconChainError, BlockError, ExecutionPayloadError, StateSkipConfig, WhenSlotSkipped,
|
||||
INVALID_JUSTIFIED_PAYLOAD_SHUTDOWN_REASON,
|
||||
@@ -14,6 +15,7 @@ use fork_choice::{
|
||||
};
|
||||
use proto_array::{Error as ProtoArrayError, ExecutionStatus};
|
||||
use slot_clock::SlotClock;
|
||||
use std::collections::HashMap;
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
use task_executor::ShutdownReason;
|
||||
@@ -95,11 +97,15 @@ impl InvalidPayloadRig {
|
||||
}
|
||||
|
||||
async fn recompute_head(&self) {
|
||||
self.harness
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.unwrap();
|
||||
self.harness.chain.recompute_head_at_current_slot().await;
|
||||
}
|
||||
|
||||
fn cached_head(&self) -> CachedHead<E> {
|
||||
self.harness.chain.canonical_head.cached_head()
|
||||
}
|
||||
|
||||
fn canonical_head(&self) -> &CanonicalHead<EphemeralHarnessType<E>> {
|
||||
&self.harness.chain.canonical_head
|
||||
}
|
||||
|
||||
fn previous_forkchoice_update_params(&self) -> (ForkChoiceState, PayloadAttributes) {
|
||||
@@ -354,6 +360,19 @@ impl InvalidPayloadRig {
|
||||
.await
|
||||
.unwrap();
|
||||
}
|
||||
|
||||
fn assert_get_head_error_contains(&self, s: &str) {
|
||||
match self
|
||||
.harness
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_write_lock()
|
||||
.get_head(self.harness.chain.slot().unwrap(), &self.harness.chain.spec)
|
||||
{
|
||||
Err(ForkChoiceError::ProtoArrayError(e)) if e.contains(s) => (),
|
||||
other => panic!("expected {} error, got {:?}", s, other),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
/// Simple test of the different import types.
|
||||
@@ -1183,3 +1202,235 @@ async fn attesting_to_optimistic_head() {
|
||||
get_aggregated().unwrap();
|
||||
get_aggregated_by_slot_and_root().unwrap();
|
||||
}
|
||||
|
||||
/// Helper for running tests where we generate a chain with an invalid head and then some
|
||||
/// `fork_blocks` to recover it.
|
||||
struct InvalidHeadSetup {
|
||||
rig: InvalidPayloadRig,
|
||||
fork_blocks: Vec<Arc<SignedBeaconBlock<E>>>,
|
||||
invalid_head: CachedHead<E>,
|
||||
}
|
||||
|
||||
impl InvalidHeadSetup {
|
||||
async fn new() -> InvalidHeadSetup {
|
||||
let mut rig = InvalidPayloadRig::new().enable_attestations();
|
||||
rig.move_to_terminal_block();
|
||||
rig.import_block(Payload::Valid).await; // Import a valid transition block.
|
||||
|
||||
// Import blocks until the first time the chain finalizes.
|
||||
while rig.cached_head().finalized_checkpoint().epoch == 0 {
|
||||
rig.import_block(Payload::Syncing).await;
|
||||
}
|
||||
|
||||
let invalid_head = rig.cached_head();
|
||||
|
||||
// Invalidate the head block.
|
||||
rig.invalidate_manually(invalid_head.head_block_root())
|
||||
.await;
|
||||
assert!(rig
|
||||
.canonical_head()
|
||||
.head_execution_status()
|
||||
.unwrap()
|
||||
.is_invalid());
|
||||
|
||||
// Finding a new head should fail since the only possible head is not valid.
|
||||
rig.assert_get_head_error_contains("InvalidBestNode");
|
||||
|
||||
// Build three "fork" blocks that conflict with the current canonical head. Don't apply them to
|
||||
// the chain yet.
|
||||
let mut fork_blocks = vec![];
|
||||
let mut parent_state = rig
|
||||
.harness
|
||||
.chain
|
||||
.state_at_slot(
|
||||
invalid_head.head_slot() - 3,
|
||||
StateSkipConfig::WithStateRoots,
|
||||
)
|
||||
.unwrap();
|
||||
for _ in 0..3 {
|
||||
let slot = parent_state.slot() + 1;
|
||||
let (fork_block, post_state) = rig.harness.make_block(parent_state, slot).await;
|
||||
parent_state = post_state;
|
||||
fork_blocks.push(Arc::new(fork_block))
|
||||
}
|
||||
|
||||
Self {
|
||||
rig,
|
||||
fork_blocks,
|
||||
invalid_head,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn recover_from_invalid_head_by_importing_blocks() {
|
||||
let InvalidHeadSetup {
|
||||
rig,
|
||||
fork_blocks,
|
||||
invalid_head,
|
||||
} = InvalidHeadSetup::new().await;
|
||||
|
||||
// Import the first two blocks, they should not become the head.
|
||||
for i in 0..2 {
|
||||
if i == 0 {
|
||||
// The first block should be `VALID` during import.
|
||||
rig.harness
|
||||
.mock_execution_layer
|
||||
.as_ref()
|
||||
.unwrap()
|
||||
.server
|
||||
.all_payloads_valid_on_new_payload();
|
||||
} else {
|
||||
// All blocks after the first block should return `SYNCING`.
|
||||
rig.harness
|
||||
.mock_execution_layer
|
||||
.as_ref()
|
||||
.unwrap()
|
||||
.server
|
||||
.all_payloads_syncing_on_new_payload(true);
|
||||
}
|
||||
|
||||
rig.harness
|
||||
.chain
|
||||
.process_block(fork_blocks[i].clone(), CountUnrealized::True)
|
||||
.await
|
||||
.unwrap();
|
||||
rig.recompute_head().await;
|
||||
rig.assert_get_head_error_contains("InvalidBestNode");
|
||||
let new_head = rig.cached_head();
|
||||
assert_eq!(
|
||||
new_head.head_block_root(),
|
||||
invalid_head.head_block_root(),
|
||||
"the head should not change"
|
||||
);
|
||||
}
|
||||
|
||||
// Import the third block, it should become the head.
|
||||
rig.harness
|
||||
.chain
|
||||
.process_block(fork_blocks[2].clone(), CountUnrealized::True)
|
||||
.await
|
||||
.unwrap();
|
||||
rig.recompute_head().await;
|
||||
let new_head = rig.cached_head();
|
||||
assert_eq!(
|
||||
new_head.head_block_root(),
|
||||
fork_blocks[2].canonical_root(),
|
||||
"the third block should become the head"
|
||||
);
|
||||
|
||||
let manual_get_head = rig
|
||||
.harness
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_write_lock()
|
||||
.get_head(rig.harness.chain.slot().unwrap(), &rig.harness.chain.spec)
|
||||
.unwrap();
|
||||
assert_eq!(manual_get_head, new_head.head_block_root(),);
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn recover_from_invalid_head_after_persist_and_reboot() {
|
||||
let InvalidHeadSetup {
|
||||
rig,
|
||||
fork_blocks: _,
|
||||
invalid_head,
|
||||
} = InvalidHeadSetup::new().await;
|
||||
|
||||
// Forcefully persist the head and fork choice.
|
||||
rig.harness.chain.persist_head_and_fork_choice().unwrap();
|
||||
|
||||
let resumed = BeaconChainHarness::builder(MainnetEthSpec)
|
||||
.default_spec()
|
||||
.deterministic_keypairs(VALIDATOR_COUNT)
|
||||
.resumed_ephemeral_store(rig.harness.chain.store.clone())
|
||||
.mock_execution_layer()
|
||||
.build();
|
||||
|
||||
// Forget the original rig so we don't accidentally use it again.
|
||||
drop(rig);
|
||||
|
||||
let resumed_head = resumed.chain.canonical_head.cached_head();
|
||||
assert_eq!(
|
||||
resumed_head.head_block_root(),
|
||||
invalid_head.head_block_root(),
|
||||
"the resumed harness should have the invalid block as the head"
|
||||
);
|
||||
assert!(
|
||||
resumed
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_read_lock()
|
||||
.is_optimistic_block(&resumed_head.head_block_root())
|
||||
.unwrap(),
|
||||
"the invalid block should have become optimistic"
|
||||
);
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn weights_after_resetting_optimistic_status() {
|
||||
let mut rig = InvalidPayloadRig::new().enable_attestations();
|
||||
rig.move_to_terminal_block();
|
||||
rig.import_block(Payload::Valid).await; // Import a valid transition block.
|
||||
|
||||
let mut roots = vec![];
|
||||
for _ in 0..4 {
|
||||
roots.push(rig.import_block(Payload::Syncing).await);
|
||||
}
|
||||
|
||||
rig.recompute_head().await;
|
||||
let head = rig.cached_head();
|
||||
|
||||
let original_weights = rig
|
||||
.harness
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_read_lock()
|
||||
.proto_array()
|
||||
.iter_nodes(&head.head_block_root())
|
||||
.map(|node| (node.root, node.weight))
|
||||
.collect::<HashMap<_, _>>();
|
||||
|
||||
rig.invalidate_manually(roots[1]).await;
|
||||
|
||||
rig.harness
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_write_lock()
|
||||
.proto_array_mut()
|
||||
.set_all_blocks_to_optimistic::<E>(&rig.harness.chain.spec)
|
||||
.unwrap();
|
||||
|
||||
let new_weights = rig
|
||||
.harness
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_read_lock()
|
||||
.proto_array()
|
||||
.iter_nodes(&head.head_block_root())
|
||||
.map(|node| (node.root, node.weight))
|
||||
.collect::<HashMap<_, _>>();
|
||||
|
||||
assert_eq!(original_weights, new_weights);
|
||||
|
||||
// Advance the current slot and run fork choice to remove proposer boost.
|
||||
rig.harness
|
||||
.set_current_slot(rig.harness.chain.slot().unwrap() + 1);
|
||||
rig.recompute_head().await;
|
||||
|
||||
assert_eq!(
|
||||
rig.harness
|
||||
.chain
|
||||
.canonical_head
|
||||
.fork_choice_read_lock()
|
||||
.get_block_weight(&head.head_block_root())
|
||||
.unwrap(),
|
||||
head.snapshot.beacon_state.validators()[0].effective_balance,
|
||||
"proposer boost should be removed from the head block and the vote of a single validator applied"
|
||||
);
|
||||
|
||||
// Import a length of chain to ensure the chain can be built atop.
|
||||
for _ in 0..E::slots_per_epoch() * 4 {
|
||||
rig.import_block(Payload::Valid).await;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2128,7 +2128,7 @@ async fn weak_subjectivity_sync() {
|
||||
.process_block(Arc::new(full_block), CountUnrealized::True)
|
||||
.await
|
||||
.unwrap();
|
||||
beacon_chain.recompute_head_at_current_slot().await.unwrap();
|
||||
beacon_chain.recompute_head_at_current_slot().await;
|
||||
|
||||
// Check that the new block's state can be loaded correctly.
|
||||
let state_root = block.state_root();
|
||||
@@ -2460,11 +2460,7 @@ async fn revert_minority_fork_on_resume() {
|
||||
.build();
|
||||
|
||||
// Head should now be just before the fork.
|
||||
resumed_harness
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.unwrap();
|
||||
resumed_harness.chain.recompute_head_at_current_slot().await;
|
||||
assert_eq!(resumed_harness.head_slot(), fork_slot - 1);
|
||||
|
||||
// Head track should know the canonical head and the rogue head.
|
||||
@@ -2482,11 +2478,7 @@ async fn revert_minority_fork_on_resume() {
|
||||
.unwrap();
|
||||
|
||||
// The canonical head should be the block from the majority chain.
|
||||
resumed_harness
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.unwrap();
|
||||
resumed_harness.chain.recompute_head_at_current_slot().await;
|
||||
assert_eq!(resumed_harness.head_slot(), block.slot());
|
||||
assert_eq!(resumed_harness.head_block_root(), block.canonical_root());
|
||||
}
|
||||
|
||||
@@ -693,11 +693,7 @@ async fn run_skip_slot_test(skip_slots: u64) {
|
||||
harness_a.chain.head_snapshot().beacon_block_root
|
||||
);
|
||||
|
||||
harness_b
|
||||
.chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.expect("should run fork choice");
|
||||
harness_b.chain.recompute_head_at_current_slot().await;
|
||||
|
||||
assert_eq!(
|
||||
harness_b.chain.head_snapshot().beacon_block.slot(),
|
||||
|
||||
@@ -1059,10 +1059,7 @@ pub fn serve<T: BeaconChainTypes>(
|
||||
|
||||
// Update the head since it's likely this block will become the new
|
||||
// head.
|
||||
chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.map_err(warp_utils::reject::beacon_chain_error)?;
|
||||
chain.recompute_head_at_current_slot().await;
|
||||
|
||||
// Perform some logging to inform users if their blocks are being produced
|
||||
// late.
|
||||
@@ -1186,10 +1183,7 @@ pub fn serve<T: BeaconChainTypes>(
|
||||
Ok(_) => {
|
||||
// Update the head since it's likely this block will become the new
|
||||
// head.
|
||||
chain
|
||||
.recompute_head_at_current_slot()
|
||||
.await
|
||||
.map_err(warp_utils::reject::beacon_chain_error)?;
|
||||
chain.recompute_head_at_current_slot().await;
|
||||
|
||||
Ok(warp::reply::json(&()))
|
||||
}
|
||||
|
||||
@@ -221,7 +221,7 @@ impl TestRig {
|
||||
}
|
||||
|
||||
pub async fn recompute_head(&self) {
|
||||
self.chain.recompute_head_at_current_slot().await.unwrap()
|
||||
self.chain.recompute_head_at_current_slot().await
|
||||
}
|
||||
|
||||
pub fn head_root(&self) -> Hash256 {
|
||||
|
||||
@@ -927,21 +927,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
"peer_id" => %peer_id
|
||||
);
|
||||
|
||||
if let Err(e) = self.chain.recompute_head_at_current_slot().await {
|
||||
error!(
|
||||
self.log,
|
||||
"Fork choice failed";
|
||||
"error" => ?e,
|
||||
"location" => "block_gossip"
|
||||
)
|
||||
} else {
|
||||
debug!(
|
||||
self.log,
|
||||
"Fork choice success";
|
||||
"block" => ?block_root,
|
||||
"location" => "block_gossip"
|
||||
)
|
||||
}
|
||||
self.chain.recompute_head_at_current_slot().await;
|
||||
}
|
||||
Err(BlockError::ParentUnknown { .. }) => {
|
||||
// Inform the sync manager to find parents for this block
|
||||
|
||||
@@ -111,7 +111,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
None,
|
||||
);
|
||||
|
||||
self.recompute_head("process_rpc_block").await;
|
||||
self.chain.recompute_head_at_current_slot().await;
|
||||
}
|
||||
}
|
||||
// Sync handles these results
|
||||
@@ -248,7 +248,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
ChainSegmentResult::Successful { imported_blocks } => {
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_CHAIN_SEGMENT_SUCCESS_TOTAL);
|
||||
if imported_blocks > 0 {
|
||||
self.recompute_head("process_blocks_ok").await;
|
||||
self.chain.recompute_head_at_current_slot().await;
|
||||
}
|
||||
(imported_blocks, Ok(()))
|
||||
}
|
||||
@@ -259,7 +259,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_CHAIN_SEGMENT_FAILED_TOTAL);
|
||||
let r = self.handle_failed_chain_segment(error);
|
||||
if imported_blocks > 0 {
|
||||
self.recompute_head("process_blocks_err").await;
|
||||
self.chain.recompute_head_at_current_slot().await;
|
||||
}
|
||||
(imported_blocks, r)
|
||||
}
|
||||
@@ -392,24 +392,6 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
}
|
||||
}
|
||||
|
||||
/// Runs fork-choice on a given chain. This is used during block processing after one successful
|
||||
/// block import.
|
||||
async fn recompute_head(&self, location: &str) {
|
||||
match self.chain.recompute_head_at_current_slot().await {
|
||||
Ok(()) => debug!(
|
||||
self.log,
|
||||
"Fork choice success";
|
||||
"location" => location
|
||||
),
|
||||
Err(e) => error!(
|
||||
self.log,
|
||||
"Fork choice failed";
|
||||
"error" => ?e,
|
||||
"location" => location
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
/// Helper function to handle a `BlockError` from `process_chain_segment`
|
||||
fn handle_failed_chain_segment(
|
||||
&self,
|
||||
|
||||
Reference in New Issue
Block a user