use english for all reason strings in IsStandardTx()

This commit is contained in:
Philip Kaufmann 2014-01-27 12:13:00 +01:00
parent ca1913e8f6
commit b34e88a88f
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason)
// only one OP_RETURN txout is permitted
if (nDataOut > 1) {
reason = "mucho-data";
reason = "multi-op-return";
return false;
}