mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-18 13:09:12 +02:00
118 lines
4.9 KiB
C++
118 lines
4.9 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "script_error.h"
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wcovered-switch-default"
|
|
#endif
|
|
|
|
namespace bitcoin {
|
|
|
|
const char *ScriptErrorString(const ScriptError serror) {
|
|
switch (serror) {
|
|
case SCRIPT_ERR_OK:
|
|
return "No error";
|
|
case SCRIPT_ERR_EVAL_FALSE:
|
|
return "Script evaluated without error but finished with a "
|
|
"false/empty top stack element";
|
|
case SCRIPT_ERR_VERIFY:
|
|
return "Script failed an OP_VERIFY operation";
|
|
case SCRIPT_ERR_EQUALVERIFY:
|
|
return "Script failed an OP_EQUALVERIFY operation";
|
|
case SCRIPT_ERR_CHECKMULTISIGVERIFY:
|
|
return "Script failed an OP_CHECKMULTISIGVERIFY operation";
|
|
case SCRIPT_ERR_CHECKSIGVERIFY:
|
|
return "Script failed an OP_CHECKSIGVERIFY operation";
|
|
case SCRIPT_ERR_CHECKDATASIGVERIFY:
|
|
return "Script failed an OP_CHECKDATASIGVERIFY operation";
|
|
case SCRIPT_ERR_NUMEQUALVERIFY:
|
|
return "Script failed an OP_NUMEQUALVERIFY operation";
|
|
case SCRIPT_ERR_SCRIPT_SIZE:
|
|
return "Script is too big";
|
|
case SCRIPT_ERR_PUSH_SIZE:
|
|
return "Push value size limit exceeded";
|
|
case SCRIPT_ERR_OP_COUNT:
|
|
return "Operation limit exceeded";
|
|
case SCRIPT_ERR_STACK_SIZE:
|
|
return "Stack size limit exceeded";
|
|
case SCRIPT_ERR_SIG_COUNT:
|
|
return "Signature count negative or greater than pubkey count";
|
|
case SCRIPT_ERR_PUBKEY_COUNT:
|
|
return "Pubkey count negative or limit exceeded";
|
|
case SCRIPT_ERR_INVALID_OPERAND_SIZE:
|
|
return "Invalid operand size";
|
|
case SCRIPT_ERR_INVALID_NUMBER_RANGE:
|
|
return "Given operand is not a number within the valid range "
|
|
"[-2^31...2^31]";
|
|
case SCRIPT_ERR_IMPOSSIBLE_ENCODING:
|
|
return "The requested encoding is impossible to satisfy";
|
|
case SCRIPT_ERR_INVALID_SPLIT_RANGE:
|
|
return "Invalid OP_SPLIT range";
|
|
case SCRIPT_ERR_BAD_OPCODE:
|
|
return "Opcode missing or not understood";
|
|
case SCRIPT_ERR_DISABLED_OPCODE:
|
|
return "Attempted to use a disabled opcode";
|
|
case SCRIPT_ERR_INVALID_STACK_OPERATION:
|
|
return "Operation not valid with the current stack size";
|
|
case SCRIPT_ERR_INVALID_ALTSTACK_OPERATION:
|
|
return "Operation not valid with the current altstack size";
|
|
case SCRIPT_ERR_OP_RETURN:
|
|
return "OP_RETURN was encountered";
|
|
case SCRIPT_ERR_UNBALANCED_CONDITIONAL:
|
|
return "Invalid OP_IF construction";
|
|
case SCRIPT_ERR_DIV_BY_ZERO:
|
|
return "Division by zero error";
|
|
case SCRIPT_ERR_MOD_BY_ZERO:
|
|
return "Modulo by zero error";
|
|
case SCRIPT_ERR_NEGATIVE_LOCKTIME:
|
|
return "Negative locktime";
|
|
case SCRIPT_ERR_UNSATISFIED_LOCKTIME:
|
|
return "Locktime requirement not satisfied";
|
|
case SCRIPT_ERR_SIG_HASHTYPE:
|
|
return "Signature hash type missing or not understood";
|
|
case SCRIPT_ERR_SIG_DER:
|
|
return "Non-canonical DER signature";
|
|
case SCRIPT_ERR_MINIMALDATA:
|
|
return "Data push larger than necessary";
|
|
case SCRIPT_ERR_SIG_PUSHONLY:
|
|
return "Only push operators allowed in signature scripts";
|
|
case SCRIPT_ERR_SIG_HIGH_S:
|
|
return "Non-canonical signature: S value is unnecessarily high";
|
|
case SCRIPT_ERR_SIG_NULLDUMMY:
|
|
return "Dummy CHECKMULTISIG argument must be zero";
|
|
case SCRIPT_ERR_MINIMALIF:
|
|
return "OP_IF/NOTIF argument must be minimal";
|
|
case SCRIPT_ERR_SIG_NULLFAIL:
|
|
return "Signature must be zero for failed CHECK(MULTI)SIG "
|
|
"operation";
|
|
case SCRIPT_ERR_SIG_BADLENGTH:
|
|
return "Signature cannot be 65 bytes in CHECKMULTISIG";
|
|
case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS:
|
|
return "NOPx reserved for soft-fork upgrades";
|
|
case SCRIPT_ERR_PUBKEYTYPE:
|
|
return "Public key is neither compressed or uncompressed";
|
|
case SCRIPT_ERR_CLEANSTACK:
|
|
return "Script did not clean its stack";
|
|
case SCRIPT_ERR_NONCOMPRESSED_PUBKEY:
|
|
return "Using non-compressed public key";
|
|
case SCRIPT_ERR_ILLEGAL_FORKID:
|
|
return "Illegal use of SIGHASH_FORKID";
|
|
case SCRIPT_ERR_MUST_USE_FORKID:
|
|
return "Signature must use SIGHASH_FORKID";
|
|
case SCRIPT_ERR_UNKNOWN_ERROR:
|
|
case SCRIPT_ERR_ERROR_COUNT:
|
|
default:
|
|
break;
|
|
}
|
|
return "unknown error";
|
|
}
|
|
|
|
} // end namespace bitcoin
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|