From b34e88a88f8e8c0b73292853fbce73a5f86c7dcc Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 27 Jan 2014 12:13:00 +0100 Subject: [PATCH] use english for all reason strings in IsStandardTx() --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 8c60a26b..610efaf0 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; }