Skip to content

Commit

Permalink
Fix relative import (#2808)
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths authored Jul 6, 2021
1 parent e363db6 commit 9cc19c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/config/src/beaconConfig.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Root} from "../../types";
import {Root} from "@chainsafe/lodestar-types";
import {createIChainConfig, IChainConfig} from "./chainConfig";
import {createIForkConfig, IForkConfig} from "./forkConfig";
import {createICachedGenesis} from "./genesisConfig";
Expand Down
4 changes: 2 additions & 2 deletions packages/config/src/genesisConfig/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {ForkName} from "../../../params";
import {DomainType, phase0, Root, Slot, ssz, Version} from "../../../types";
import {ForkName} from "@chainsafe/lodestar-params";
import {DomainType, phase0, Root, Slot, ssz, Version} from "@chainsafe/lodestar-types";
import {IChainForkConfig} from "../beaconConfig";
import {ICachedGenesis} from "./types";

Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/genesisConfig/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {DomainType, Slot} from "../../../types";
import {DomainType, Slot} from "@chainsafe/lodestar-types";

export interface ICachedGenesis {
getDomain(domainType: DomainType, slot: Slot): Buffer;
Expand Down

0 comments on commit 9cc19c4

Please sign in to comment.