diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-02-13 15:12:18 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-02-13 15:12:18 +0100 |
commit | bbfce8a4c9e7541d06dcc857dd0a82ec14d92180 (patch) | |
tree | 0e9c65f3994eae8ee2e85f27fd93d7e6d55dbb45 /src/main.cpp | |
parent | ea062655e045b68d568d2faf7abe946deb00d46d (diff) |
fix non-standard reason string in main.cpp
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 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; } } |