diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2020-03-23 17:26:36 +0100 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2020-03-23 17:33:48 +0100 |
commit | 41ff4992e57f8626019c0b2ab3d024db71e4c20f (patch) | |
tree | 14c870c880bea2907d294adb0bee5175f62b8c28 /src/script/script_error.cpp | |
parent | 97b0687501cee77a9170f9e288755a5d268e9bd4 (diff) |
script: fix SCRIPT_ERR_SIG_PUSHONLY error string
Diffstat (limited to 'src/script/script_error.cpp')
-rw-r--r-- | src/script/script_error.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/script_error.cpp b/src/script/script_error.cpp index 9d7deffc78..ff521d5860 100644 --- a/src/script/script_error.cpp +++ b/src/script/script_error.cpp @@ -58,7 +58,7 @@ const char* ScriptErrorString(const ScriptError serror) case SCRIPT_ERR_MINIMALDATA: return "Data push larger than necessary"; case SCRIPT_ERR_SIG_PUSHONLY: - return "Only non-push operators allowed in signatures"; + return "Only push operators allowed in signatures"; case SCRIPT_ERR_SIG_HIGH_S: return "Non-canonical signature: S value is unnecessarily high"; case SCRIPT_ERR_SIG_NULLDUMMY: |