fix non-standard reason string in main.cpp

This commit is contained in:
Philip Kaufmann 2014-02-13 15:12:18 +01:00
parent ea062655e0
commit bbfce8a4c9
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason)
return false;
}
if (!txin.scriptSig.HasCanonicalPushes()) {
reason = "non-canonical-push";
reason = "scriptsig-non-canonical-push";
return false;
}
}