Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2020 The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <script/script_error.h>
7 : :
8 : : #include <string>
9 : :
10 : 116177 : std::string ScriptErrorString(const ScriptError serror)
11 : : {
12 [ + + + + : 116177 : switch (serror)
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + ]
13 : : {
14 : 1341 : case SCRIPT_ERR_OK:
15 : 1341 : return "No error";
16 : 6354 : case SCRIPT_ERR_EVAL_FALSE:
17 : 6354 : return "Script evaluated without error but finished with a false/empty top stack element";
18 : 644 : case SCRIPT_ERR_VERIFY:
19 : 644 : return "Script failed an OP_VERIFY operation";
20 : 743 : case SCRIPT_ERR_EQUALVERIFY:
21 : 743 : return "Script failed an OP_EQUALVERIFY operation";
22 : 125 : case SCRIPT_ERR_CHECKMULTISIGVERIFY:
23 : 125 : return "Script failed an OP_CHECKMULTISIGVERIFY operation";
24 : 565 : case SCRIPT_ERR_CHECKSIGVERIFY:
25 : 565 : return "Script failed an OP_CHECKSIGVERIFY operation";
26 : 908 : case SCRIPT_ERR_NUMEQUALVERIFY:
27 : 908 : return "Script failed an OP_NUMEQUALVERIFY operation";
28 : 148 : case SCRIPT_ERR_SCRIPT_SIZE:
29 : 148 : return "Script is too big";
30 : 930 : case SCRIPT_ERR_PUSH_SIZE:
31 : 930 : return "Push value size limit exceeded";
32 : 2202 : case SCRIPT_ERR_OP_COUNT:
33 : 2202 : return "Operation limit exceeded";
34 : 560 : case SCRIPT_ERR_STACK_SIZE:
35 : 560 : return "Stack size limit exceeded";
36 : 1049 : case SCRIPT_ERR_SIG_COUNT:
37 : 1049 : return "Signature count negative or greater than pubkey count";
38 : 1198 : case SCRIPT_ERR_PUBKEY_COUNT:
39 : 1198 : return "Pubkey count negative or limit exceeded";
40 : 11712 : case SCRIPT_ERR_BAD_OPCODE:
41 : 11712 : return "Opcode missing or not understood";
42 : 5842 : case SCRIPT_ERR_DISABLED_OPCODE:
43 : 5842 : return "Attempted to use a disabled opcode";
44 : 3463 : case SCRIPT_ERR_INVALID_STACK_OPERATION:
45 : 3463 : return "Operation not valid with the current stack size";
46 : 967 : case SCRIPT_ERR_INVALID_ALTSTACK_OPERATION:
47 : 967 : return "Operation not valid with the current altstack size";
48 : 2324 : case SCRIPT_ERR_OP_RETURN:
49 : 2324 : return "OP_RETURN was encountered";
50 : 4553 : case SCRIPT_ERR_UNBALANCED_CONDITIONAL:
51 : 4553 : return "Invalid OP_IF construction";
52 : 1249 : case SCRIPT_ERR_NEGATIVE_LOCKTIME:
53 : 1249 : return "Negative locktime";
54 : 5760 : case SCRIPT_ERR_UNSATISFIED_LOCKTIME:
55 : 5760 : return "Locktime requirement not satisfied";
56 : 15690 : case SCRIPT_ERR_SIG_HASHTYPE:
57 : 15690 : return "Signature hash type missing or not understood";
58 : 2236 : case SCRIPT_ERR_SIG_DER:
59 : 2236 : return "Non-canonical DER signature";
60 : 2154 : case SCRIPT_ERR_MINIMALDATA:
61 : 2154 : return "Data push larger than necessary";
62 : 91 : case SCRIPT_ERR_SIG_PUSHONLY:
63 : 91 : return "Only push operators allowed in signatures";
64 : 13 : case SCRIPT_ERR_SIG_HIGH_S:
65 : 13 : return "Non-canonical signature: S value is unnecessarily high";
66 : 711 : case SCRIPT_ERR_SIG_NULLDUMMY:
67 : 711 : return "Dummy CHECKMULTISIG argument must be zero";
68 : 9 : case SCRIPT_ERR_MINIMALIF:
69 : 9 : return "OP_IF/NOTIF argument must be minimal";
70 : 100 : case SCRIPT_ERR_SIG_NULLFAIL:
71 : 100 : return "Signature must be zero for failed CHECK(MULTI)SIG operation";
72 : 1964 : case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS:
73 : 1964 : return "NOPx reserved for soft-fork upgrades";
74 : 2301 : case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM:
75 : 2301 : return "Witness version reserved for soft-fork upgrades";
76 : 2 : case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_TAPROOT_VERSION:
77 : 2 : return "Taproot version reserved for soft-fork upgrades";
78 : 37 : case SCRIPT_ERR_DISCOURAGE_OP_SUCCESS:
79 : 37 : return "OP_SUCCESSx reserved for soft-fork upgrades";
80 : 4 : case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_PUBKEYTYPE:
81 : 4 : return "Public key version reserved for soft-fork upgrades";
82 : 2967 : case SCRIPT_ERR_PUBKEYTYPE:
83 : 2967 : return "Public key is neither compressed or uncompressed";
84 : 3479 : case SCRIPT_ERR_CLEANSTACK:
85 : 3479 : return "Stack size must be exactly one after execution";
86 : 986 : case SCRIPT_ERR_WITNESS_PROGRAM_WRONG_LENGTH:
87 : 986 : return "Witness program has incorrect length";
88 : 9110 : case SCRIPT_ERR_WITNESS_PROGRAM_WITNESS_EMPTY:
89 : 9110 : return "Witness program was passed an empty witness";
90 : 5937 : case SCRIPT_ERR_WITNESS_PROGRAM_MISMATCH:
91 : 5937 : return "Witness program hash mismatch";
92 : 2564 : case SCRIPT_ERR_WITNESS_MALLEATED:
93 : 2564 : return "Witness requires empty scriptSig";
94 : 5 : case SCRIPT_ERR_WITNESS_MALLEATED_P2SH:
95 : 5 : return "Witness requires only-redeemscript scriptSig";
96 : 213 : case SCRIPT_ERR_WITNESS_UNEXPECTED:
97 : 213 : return "Witness provided for non-witness script";
98 : 1 : case SCRIPT_ERR_WITNESS_PUBKEYTYPE:
99 : 1 : return "Using non-compressed keys in segwit";
100 : 1558 : case SCRIPT_ERR_SCHNORR_SIG_SIZE:
101 : 1558 : return "Invalid Schnorr signature size";
102 : 114 : case SCRIPT_ERR_SCHNORR_SIG_HASHTYPE:
103 : 114 : return "Invalid Schnorr signature hash type";
104 : 439 : case SCRIPT_ERR_SCHNORR_SIG:
105 : 439 : return "Invalid Schnorr signature";
106 : 1109 : case SCRIPT_ERR_TAPROOT_WRONG_CONTROL_SIZE:
107 : 1109 : return "Invalid Taproot control block size";
108 : 13 : case SCRIPT_ERR_TAPSCRIPT_VALIDATION_WEIGHT:
109 : 13 : return "Too much signature validation relative to witness weight";
110 : 8 : case SCRIPT_ERR_TAPSCRIPT_CHECKMULTISIG:
111 : 8 : return "OP_CHECKMULTISIG(VERIFY) is not available in tapscript";
112 : 6 : case SCRIPT_ERR_TAPSCRIPT_MINIMALIF:
113 : 6 : return "OP_IF/NOTIF argument must be minimal in tapscript";
114 : 1102 : case SCRIPT_ERR_OP_CODESEPARATOR:
115 : 1102 : return "Using OP_CODESEPARATOR in non-witness script";
116 : 3227 : case SCRIPT_ERR_SIG_FINDANDDELETE:
117 : 3227 : return "Signature is found in scriptCode";
118 : 5390 : case SCRIPT_ERR_UNKNOWN_ERROR:
119 : 5390 : case SCRIPT_ERR_ERROR_COUNT:
120 : 5390 : default: break;
121 : : }
122 : 5390 : return "unknown error";
123 : : }
|