*Update imports for getKeyPair and getSeed
This commit is contained in:
parent
7fad293bdc
commit
5fba29b3ee
|
@ -2,7 +2,7 @@ import express, { Express } from "express";
|
|||
import http from "http";
|
||||
import { AddressInfo } from "net";
|
||||
import log from "loglevel";
|
||||
import { getKeyPair } from "./swarm.js";
|
||||
import { getKeyPair } from "../lib/seed.js";
|
||||
|
||||
let app: Express;
|
||||
let router = express.Router();
|
||||
|
|
|
@ -7,7 +7,7 @@ import * as fs from "fs";
|
|||
import path from "path";
|
||||
import type { Logger } from "loglevel";
|
||||
|
||||
import { getSeed } from "../lib/util.js";
|
||||
import { getSeed } from "../lib/seed.js";
|
||||
import pluginRpc from "./plugins/rpc";
|
||||
import pluginCore from "./plugins/core";
|
||||
import type Config from "@lumeweb/cfg";
|
||||
|
|
|
@ -8,7 +8,7 @@ import {
|
|||
import promiseRetry from "promise-retry";
|
||||
import config from "../config.js";
|
||||
import log from "loglevel";
|
||||
import { getSeed } from "../lib/util.js";
|
||||
import { getSeed } from "../lib/seed.js";
|
||||
import type {
|
||||
IndependentFileSmall,
|
||||
SavedSslData,
|
||||
|
|
Loading…
Reference in New Issue