diff options
| author | Sebastian Falbesoner <[email protected]> | 2020-03-23 17:26:36 +0100 |
|---|---|---|
| committer | Sebastian Falbesoner <[email protected]> | 2020-03-23 17:33:48 +0100 |
| commit | 41ff4992e57f8626019c0b2ab3d024db71e4c20f (patch) | |
| tree | 14c870c880bea2907d294adb0bee5175f62b8c28 /src/script/script_error.cpp | |
| parent | Merge #18393: tests: Don't assume presence of __builtin_mul_overflow(…) in ... (diff) | |
| download | discoin-41ff4992e57f8626019c0b2ab3d024db71e4c20f.tar.xz discoin-41ff4992e57f8626019c0b2ab3d024db71e4c20f.zip | |
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 9d7deffc7..ff521d586 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: |