Fixed circular dependency in SigningKey.

This commit is contained in:
Richard Moore 2022-09-05 16:51:48 -04:00
parent 92c217fb28
commit 955e4c0af7

@ -1,9 +1,9 @@
import * as secp256k1 from "@noble/secp256k1";
import { computeHmac } from "../crypto/index.js";
import { concat, hexlify, toHex, logger } from "../utils/index.js";
import { computeHmac } from "./hmac.js";
import { Signature } from "./signature.js";
import type { BytesLike, Frozen } from "../utils/index.js";