mirror of https://github.com/status-im/js-waku.git
Remove unused constant
This commit is contained in:
parent
b93c876043
commit
4cb8769271
|
@ -1,2 +0,0 @@
|
|||
export const ERR_TYPE_NOT_IMPLEMENTED = "Keypair type not implemented";
|
||||
export const ERR_INVALID_KEYPAIR_TYPE = "Invalid keypair type";
|
|
@ -2,12 +2,12 @@ import { keys } from "libp2p-crypto";
|
|||
import { identity } from "multiformats/hashes/identity";
|
||||
import PeerId from "peer-id";
|
||||
|
||||
const { keysPBM, supportedKeys } = keys;
|
||||
|
||||
import { ERR_TYPE_NOT_IMPLEMENTED } from "./constants";
|
||||
import { Secp256k1Keypair } from "./secp256k1";
|
||||
import { IKeypair, KeypairType } from "./types";
|
||||
|
||||
const { keysPBM, supportedKeys } = keys;
|
||||
|
||||
export const ERR_TYPE_NOT_IMPLEMENTED = "Keypair type not implemented";
|
||||
export * from "./types";
|
||||
export * from "./secp256k1";
|
||||
|
||||
|
|
Loading…
Reference in New Issue