Compare commits

..

1 Commits

Author SHA1 Message Date
Lee Miller 48b2103e21
A possible solution for the sha256 signatures verification 2024-03-09 18:54:41 +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;