Compare commits

..

1 Commits

Author SHA1 Message Date
Lee Miller 5a67b91c1e
A possible solution for the sha256 signatures verification 2024-03-09 18:17:30 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ exports.verify = function(publicKey, msg, sig) {
hash = sha256(msg);
return eccrypto.verify(publicKey, hash, sig);
});
return result;
return result
};
var SECP256K1_TYPE = 714;