aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-02-17 13:59:32 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-02-17 13:59:50 +0100
commit047ee427e73a3e993b72f0480a4ab77a65c81941 (patch)
tree7335e8ee562eef7741fdb4298dfdbfc3b8d1ed24 /src
parent7abcd1a1c9c24489ee58d9a3f5846458e8b9c72e (diff)
parentbbfce8a4c9e7541d06dcc857dd0a82ec14d92180 (diff)
downloadbitcoin-047ee427e73a3e993b72f0480a4ab77a65c81941.tar.xz
Merge pull request #3666
bbfce8a fix non-standard reason string in main.cpp (Philip Kaufmann)
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 f61b282865..8e879c3169 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;
}
}