aboutsummaryrefslogtreecommitdiff
path: root/src/script/script_error.cpp
diff options
context:
space:
mode:
authorSebastian Falbesoner <[email protected]>2020-03-23 17:26:36 +0100
committerSebastian Falbesoner <[email protected]>2020-03-23 17:33:48 +0100
commit41ff4992e57f8626019c0b2ab3d024db71e4c20f (patch)
tree14c870c880bea2907d294adb0bee5175f62b8c28 /src/script/script_error.cpp
parentMerge #18393: tests: Don't assume presence of __builtin_mul_overflow(…) in ... (diff)
downloaddiscoin-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.cpp2
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: