diff options
| author | Philip Kaufmann <[email protected]> | 2014-01-27 12:13:00 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-01-28 07:45:42 +0100 |
| commit | b34e88a88f8e8c0b73292853fbce73a5f86c7dcc (patch) | |
| tree | db6a08864200a50ae658278c4c8e27485daf4019 /src/main.cpp | |
| parent | Merge pull request #2342 (diff) | |
| download | discoin-b34e88a88f8e8c0b73292853fbce73a5f86c7dcc.tar.xz discoin-b34e88a88f8e8c0b73292853fbce73a5f86c7dcc.zip | |
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 8c60a26b3..610efaf07 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; } |