aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2014-01-27 12:13:00 +0100
committerPhilip Kaufmann <[email protected]>2014-01-28 07:45:42 +0100
commitb34e88a88f8e8c0b73292853fbce73a5f86c7dcc (patch)
treedb6a08864200a50ae658278c4c8e27485daf4019 /src/main.cpp
parentMerge pull request #2342 (diff)
downloaddiscoin-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.cpp2
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;
}