Skip to content

Commit

Permalink
fix: lint for prover and reqresp
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Aug 20, 2024
1 parent beebe09 commit 668702e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {ApiClient, ApiResponse, HttpStatusCode, routes} from "@lodestar/api";
import {hash} from "@lodestar/utils";
import {Logger} from "@lodestar/logger";
import {ExecutionPayload, SignedBeaconBlock, capella} from "@lodestar/types";
import {toHexString} from "@lodestar/utils";
import {toHexString} from "@lodestar/utils/browser";
import {ForkName} from "@lodestar/params";
import {PayloadStore} from "../../../src/proof_provider/payload_store.js";
import {MAX_PAYLOAD_HISTORY} from "../../../src/constants.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/reqresp/test/unit/response/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {describe, it, expect, beforeEach, afterEach} from "vitest";
import {PeerId} from "@libp2p/interface";
import {LodestarError, fromHex} from "@lodestar/utils";
import {LodestarError, fromHex} from "@lodestar/utils/node";
import {getEmptyLogger} from "@lodestar/logger/empty";
import {Protocol, RespStatus} from "../../../src/index.js";
import {ReqRespRateLimiter} from "../../../src/rate_limiter/ReqRespRateLimiter.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/reqresp/test/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {logger} from "@libp2p/logger";
import {expect} from "vitest";
import {Uint8ArrayList} from "uint8arraylist";
import {toHexString} from "@chainsafe/ssz";
import {fromHex} from "@lodestar/utils";
import {fromHex} from "@lodestar/utils/node";
import {ResponseIncoming, RespStatus} from "../../src/index.js";
import {ResponseChunk} from "../fixtures/index.js";

Expand Down

0 comments on commit 668702e

Please sign in to comment.