Remove un-used import

This commit is contained in:
dapplion 2021-04-05 20:29:34 +02:00
parent bf2b457f48
commit f7128ad53a
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import * as blst from "@chainsafe/blst"; import * as blst from "@chainsafe/blst";
import {EmptyAggregateError, ZeroPublicKeyError} from "../errors"; import {EmptyAggregateError, ZeroPublicKeyError} from "../errors";
import {bytesToHex, hexToBytes} from "../helpers"; 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 { export class PublicKey extends blst.PublicKey implements IPublicKey {
constructor(value: ConstructorParameters<typeof blst.PublicKey>[0]) { constructor(value: ConstructorParameters<typeof blst.PublicKey>[0]) {