From f7128ad53a4d8f39c120b1c719be31cb735526a0 Mon Sep 17 00:00:00 2001 From: dapplion <35266934+dapplion@users.noreply.github.com> Date: Mon, 5 Apr 2021 20:29:34 +0200 Subject: [PATCH] Remove un-used import --- src/blst/publicKey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blst/publicKey.ts b/src/blst/publicKey.ts index d0ecff2..3e89b61 100644 --- a/src/blst/publicKey.ts +++ b/src/blst/publicKey.ts @@ -1,7 +1,7 @@ import * as blst from "@chainsafe/blst"; import {EmptyAggregateError, ZeroPublicKeyError} from "../errors"; import {bytesToHex, hexToBytes} from "../helpers"; -import {CoordType, PointFormat, PublicKey as IPublicKey} from "../interface"; +import {PointFormat, PublicKey as IPublicKey} from "../interface"; export class PublicKey extends blst.PublicKey implements IPublicKey { constructor(value: ConstructorParameters[0]) {