script: cleanup.

This commit is contained in:
Christopher Jeffrey 2016-10-02 07:26:20 -07:00
parent 2a12b908a9
commit f576ed8be7
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -3635,10 +3635,7 @@ Script.checksig = function checksig(msg, sig, key, flags) {
if (!(flags & constants.flags.VERIFY_LOW_S))
high = true;
if (SigCache)
return SigCache.verify(msg, sig.slice(0, -1), key, historical, high);
return ec.verify(msg, sig.slice(0, -1), key, historical, high);
return SigCache.verify(msg, sig.slice(0, -1), key, historical, high);
};
/**