diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-02-17 13:59:32 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-02-17 13:59:50 +0100 |
| commit | 047ee427e73a3e993b72f0480a4ab77a65c81941 (patch) | |
| tree | 7335e8ee562eef7741fdb4298dfdbfc3b8d1ed24 /src/main.cpp | |
| parent | Merge pull request #3614 (diff) | |
| parent | fix non-standard reason string in main.cpp (diff) | |
| download | discoin-047ee427e73a3e993b72f0480a4ab77a65c81941.tar.xz discoin-047ee427e73a3e993b72f0480a4ab77a65c81941.zip | |
Merge pull request #3666
bbfce8a fix non-standard reason string in main.cpp (Philip Kaufmann)
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 f61b28286..8e879c316 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; } } |