Skip to content

Commit 8487a6b

Browse files
committed
Fix tests
1 parent f598bd0 commit 8487a6b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

beacon_node/beacon_chain/src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ mod test {
11511151
use types::{EthSpec, MinimalEthSpec, Slot};
11521152

11531153
type TestEthSpec = MinimalEthSpec;
1154-
type Builder = BeaconChainBuilder<EphemeralHarnessType<EestEthSpec>>;
1154+
type Builder = BeaconChainBuilder<EphemeralHarnessType<TestEthSpec>>;
11551155

11561156
fn get_logger() -> Logger {
11571157
let builder = NullLoggerBuilder;

beacon_node/beacon_chain/tests/block_verification.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1609,7 +1609,7 @@ async fn import_duplicate_block_unrealized_justification() {
16091609

16101610
async fn import_execution_pending_block<T: BeaconChainTypes>(
16111611
chain: Arc<BeaconChain<T>>,
1612-
execution_pending_block: ExecutionPendingBlock<E>,
1612+
execution_pending_block: ExecutionPendingBlock<T>,
16131613
) -> Result<AvailabilityProcessingStatus, String> {
16141614
match chain
16151615
.clone()

beacon_node/client/src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const BLOB_AVAILABILITY_REDUCTION_EPOCHS: u64 = 2;
6767
/// called.
6868
///
6969
/// If type inference errors are raised, ensure all necessary components have been initialized. For
70-
/// example, the compiler will be unable to infer `E::Store` unless `self.disk_store(..)` or
70+
/// example, the compiler will be unable to infer `T::Store` unless `self.disk_store(..)` or
7171
/// `self.memory_store(..)` has been called.
7272
pub struct ClientBuilder<T: BeaconChainTypes> {
7373
slot_clock: Option<T::SlotClock>,

0 commit comments

Comments
 (0)