diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-01-27 12:13:00 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-01-28 07:45:42 +0100 |
commit | b34e88a88f8e8c0b73292853fbce73a5f86c7dcc (patch) | |
tree | db6a08864200a50ae658278c4c8e27485daf4019 /src/main.cpp | |
parent | ca1913e8f64fc245157b008d6b37160306aa1d83 (diff) |
use english for all reason strings in IsStandardTx()
Diffstat (limited to 'src/main.cpp')
-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; } |