diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2014-01-27 23:58:24 -0800 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2014-01-27 23:58:24 -0800 |
commit | 12e1fcc34e6ce2c889b8dbc37b27f6a1c51cc84c (patch) | |
tree | db6a08864200a50ae658278c4c8e27485daf4019 | |
parent | ca1913e8f64fc245157b008d6b37160306aa1d83 (diff) | |
parent | b34e88a88f8e8c0b73292853fbce73a5f86c7dcc (diff) |
Merge pull request #3589 from Diapolo/english-reason
use english for all reason strings in IsStandardTx()
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8c60a26b38..610efaf07d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; } |