mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-30 16:54:19 +00:00
Merge #7500: Correctly report high-S violations
9d95187 Correctly report high-S violations (Pieter Wuille)
This commit is contained in:
commit
2f3f4af4cc
@ -165,7 +165,10 @@ bool static IsLowDERSignature(const valtype &vchSig, ScriptError* serror) {
|
|||||||
return set_error(serror, SCRIPT_ERR_SIG_DER);
|
return set_error(serror, SCRIPT_ERR_SIG_DER);
|
||||||
}
|
}
|
||||||
std::vector<unsigned char> vchSigCopy(vchSig.begin(), vchSig.begin() + vchSig.size() - 1);
|
std::vector<unsigned char> vchSigCopy(vchSig.begin(), vchSig.begin() + vchSig.size() - 1);
|
||||||
return CPubKey::CheckLowS(vchSigCopy);
|
if (!CPubKey::CheckLowS(vchSigCopy)) {
|
||||||
|
return set_error(serror, SCRIPT_ERR_SIG_HIGH_S);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool static IsDefinedHashtypeSignature(const valtype &vchSig) {
|
bool static IsDefinedHashtypeSignature(const valtype &vchSig) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user