diff --git a/beacon_node/beacon_chain/tests/store_tests.rs b/beacon_node/beacon_chain/tests/store_tests.rs index cb5b98fa2c..6b6206d5e0 100644 --- a/beacon_node/beacon_chain/tests/store_tests.rs +++ b/beacon_node/beacon_chain/tests/store_tests.rs @@ -2159,12 +2159,8 @@ async fn weak_subjectivity_sync_test(slots: Vec, checkpoint_slot: Slot) { .map_err(|e| println!("Unable to read trusted setup file: {}", e)) .unwrap(); - let mock = mock_execution_layer_from_parts( - &harness.spec, - harness.runtime.task_executor.clone(), - None, - None, - ); + let mock = + mock_execution_layer_from_parts(&harness.spec, harness.runtime.task_executor.clone(), None); // Initialise a new beacon chain from the finalized checkpoint. // The slot clock must be set to a time ahead of the checkpoint state. diff --git a/common/eth2/src/types.rs b/common/eth2/src/types.rs index 389b25a4a6..cc790f467f 100644 --- a/common/eth2/src/types.rs +++ b/common/eth2/src/types.rs @@ -1491,7 +1491,7 @@ impl> BlockContents { match (Payload::block_type(), blobs) { (BlockType::Full, Some(blobs)) => { Self::BlockAndBlobSidecars(BeaconBlockAndBlobSidecars { - block: block, + block, blob_sidecars: blobs, }) }