Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Jan 9, 2024
1 parent 31a22fd commit 19dc0c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/beacon-node/src/chain/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ export interface IBeaconChain {
getBlockByRoot(root: RootHex): Promise<{block: allForks.SignedBeaconBlock; executionOptimistic: boolean} | null>;

getContents(beaconBlock: deneb.BeaconBlock): deneb.Contents;
produceCommonBlockBody(blockAttributes: BlockAttributes): Promise<CommonBlockBody>;

produceCommonBlockBody(blockAttributes: BlockAttributes): Promise<CommonBlockBody>;
produceBlock(blockAttributes: BlockAttributes & {commonBlockBody?: CommonBlockBody}): Promise<{
block: allForks.BeaconBlock;
executionPayloadValue: Wei;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {describe, it, expect, beforeEach, afterEach, MockedObject, vi} from "vitest";
import {phase0, ssz} from "@lodestar/types";
import {ssz} from "@lodestar/types";
import {SLOTS_PER_EPOCH} from "@lodestar/params";
import {routes} from "@lodestar/api";
import {createBeaconConfig, createChainForkConfig, defaultChainConfig} from "@lodestar/config";
Expand Down

0 comments on commit 19dc0c7

Please sign in to comment.