aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-02-13 15:12:18 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2014-02-13 15:12:18 +0100
commitbbfce8a4c9e7541d06dcc857dd0a82ec14d92180 (patch)
tree0e9c65f3994eae8ee2e85f27fd93d7e6d55dbb45 /src
parentea062655e045b68d568d2faf7abe946deb00d46d (diff)
downloadbitcoin-bbfce8a4c9e7541d06dcc857dd0a82ec14d92180.tar.xz
fix non-standard reason string in main.cpp
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 1df9a24d55..d9cd23ce73 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -443,7 +443,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason)
return false;
}
if (!txin.scriptSig.HasCanonicalPushes()) {
- reason = "non-canonical-push";
+ reason = "scriptsig-non-canonical-push";
return false;
}
}