Merge pull request #3666

bbfce8a fix non-standard reason string in main.cpp (Philip Kaufmann)
This commit is contained in:
Wladimir J. van der Laan 2014-02-17 13:59:32 +01:00
commit 047ee427e7
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
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;
}
}