File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change @@ -1609,7 +1609,7 @@ async fn import_duplicate_block_unrealized_justification() {
16091609
16101610async 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 ( )
Original file line number Diff line number Diff 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.
7272pub struct ClientBuilder < T : BeaconChainTypes > {
7373 slot_clock : Option < T :: SlotClock > ,
You can’t perform that action at this time.
0 commit comments