Skip to content

Commit 41ff499

Browse files
committed
script: fix SCRIPT_ERR_SIG_PUSHONLY error string
1 parent 97b0687 commit 41ff499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script/script_error.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const char* ScriptErrorString(const ScriptError serror)
5858
case SCRIPT_ERR_MINIMALDATA:
5959
return "Data push larger than necessary";
6060
case SCRIPT_ERR_SIG_PUSHONLY:
61-
return "Only non-push operators allowed in signatures";
61+
return "Only push operators allowed in signatures";
6262
case SCRIPT_ERR_SIG_HIGH_S:
6363
return "Non-canonical signature: S value is unnecessarily high";
6464
case SCRIPT_ERR_SIG_NULLDUMMY:

0 commit comments

Comments
 (0)