mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
Sanity check transaction scripts in DecodeHexTx
Make sure that the scripts of decoded transactions are valid scripts.
This commit is contained in:
parent
5b75c47784
commit
ac4e438229
3 changed files with 31 additions and 4 deletions
|
|
@ -190,6 +190,9 @@ enum opcodetype
|
|||
OP_INVALIDOPCODE = 0xff,
|
||||
};
|
||||
|
||||
// Maximum value that an opcode can be
|
||||
static const unsigned int MAX_OPCODE = OP_NOP10;
|
||||
|
||||
const char* GetOpName(opcodetype opcode);
|
||||
|
||||
class scriptnum_error : public std::runtime_error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue