Fix broken test on previous checkin

This commit is contained in:
Brannon King 2019-09-16 14:49:35 -06:00
parent f176db058e
commit 71bd612c4a
2 changed files with 3 additions and 3 deletions

View file

@ -168,7 +168,7 @@ bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs)
std::vector<std::vector<unsigned char> > vSolutions;
txnouttype whichType;
// get the scriptPubKey corresponding to this input:
if (!Solver(prev.scriptPubKey, whichType, vSolutions))
if (!Solver(StripClaimScriptPrefix(prev.scriptPubKey), whichType, vSolutions))
return false;
if (whichType == TX_SCRIPTHASH)

View file

@ -102,7 +102,7 @@ static bool SignStep(const SigningProvider& provider, const BaseSignatureCreator
std::vector<unsigned char> sig;
std::vector<valtype> vSolutions;
if (!Solver(scriptPubKey, whichTypeRet, vSolutions))
if (!Solver(StripClaimScriptPrefix(scriptPubKey), whichTypeRet, vSolutions))
return false;
switch (whichTypeRet)
@ -184,7 +184,7 @@ bool ProduceSignature(const SigningProvider& provider, const BaseSignatureCreato
std::vector<valtype> result;
txnouttype whichType;
bool solved = SignStep(provider, creator, StripClaimScriptPrefix(fromPubKey), result, whichType, SigVersion::BASE, sigdata);
bool solved = SignStep(provider, creator, fromPubKey, result, whichType, SigVersion::BASE, sigdata);
bool P2SH = false;
CScript subscript;
sigdata.scriptWitness.stack.clear();