Skip to content

Commit ae1a03e

Browse files
committed
rebase fixes
1 parent 7dab01e commit ae1a03e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/beacon-node/src/chain/blocks/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export type DataColumnsCacheMap = Map<
4848
{dataColumnSidecar: electra.DataColumnSidecar; dataColumnBytes: Uint8Array | null}
4949
>;
5050

51-
type ForkBlobsInfo = {fork: ForkName.deneb | ForkName.electra};
51+
type ForkBlobsInfo = {fork: ForkName.deneb};
5252
type BlobsData = {blobs: deneb.BlobSidecars; blobsBytes: (Uint8Array | null)[]; blobsSource: BlobsSource};
5353
export type BlockInputDataBlobs = ForkBlobsInfo & BlobsData;
5454

packages/beacon-node/src/network/reqresp/beaconBlocksMaybeBlobsByRange.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export function matchBlockWithDataColumns(
163163
peerId: PeerIdStr,
164164
config: ChainForkConfig,
165165
custodyConfig: CustodyConfig,
166-
allBlocks: WithBytes<allForks.SignedBeaconBlock>[],
166+
allBlocks: WithBytes<SignedBeaconBlock>[],
167167
allDataColumnSidecars: electra.DataColumnSidecar[],
168168
endSlot: Slot,
169169
blockSource: BlockSource,

packages/beacon-node/src/util/blobs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {digest as sha256Digest} from "@chainsafe/as-sha256";
22
import {Tree} from "@chainsafe/persistent-merkle-tree";
33
import {VERSIONED_HASH_VERSION_KZG, KZG_COMMITMENT_GINDEX0, KZG_COMMITMENTS_GINDEX, ForkName, ForkAll, NUMBER_OF_COLUMNS} from "@lodestar/params";
4-
import {deneb, ssz, BeaconBlockBody, SignedBeaconBlock, SSZTypesFor} from "@lodestar/types";
4+
import {deneb, ssz, BeaconBlockBody, SignedBeaconBlock, SSZTypesFor, electra} from "@lodestar/types";
55
import {ChainForkConfig} from "@lodestar/config";
66
import {signedBlockToSignedHeader} from "@lodestar/state-transition";
77
import {ckzg} from "./kzg.js";

0 commit comments

Comments
 (0)