aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-01-27 12:13:00 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2014-01-28 07:45:42 +0100
commitb34e88a88f8e8c0b73292853fbce73a5f86c7dcc (patch)
treedb6a08864200a50ae658278c4c8e27485daf4019 /src/main.cpp
parentca1913e8f64fc245157b008d6b37160306aa1d83 (diff)
downloadbitcoin-b34e88a88f8e8c0b73292853fbce73a5f86c7dcc.tar.xz
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 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;
}