diff --git a/src/ecdsa.js b/src/ecdsa.js index 701285f..a5190b7 100644 --- a/src/ecdsa.js +++ b/src/ecdsa.js @@ -107,7 +107,8 @@ function sign (curve, hash, d) { } function verify (curve, hash, signature, Q) { - typeforce(types.tuple(types.ECCurve, + typeforce(types.tuple( + types.ECCurve, types.Hash256bit, types.ECSignature, types.ECPoint