*Update imports for getKeyPair and getSeed

This commit is contained in:
Derrick Hammer 2022-12-18 13:45:12 -05:00
parent 7fad293bdc
commit 5fba29b3ee
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
3 changed files with 3 additions and 3 deletions

View File

@ -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();

View File

@ -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";

View File

@ -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,