diff options
| author | Andrew Chow <[email protected]> | 2017-05-30 15:42:10 -0700 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2017-06-07 12:40:01 -0700 |
| commit | 5b75c477841fa463aad9c6e6d95a98b50ce14dd3 (patch) | |
| tree | b1d8f572c189d1eb8af6aa324a002b1ee3a299aa /src/script/script.cpp | |
| parent | Merge #9740: Add friendly output to dumpwallet (diff) | |
| download | discoin-5b75c477841fa463aad9c6e6d95a98b50ce14dd3.tar.xz discoin-5b75c477841fa463aad9c6e6d95a98b50ce14dd3.zip | |
Add a valid opcode sanity check to CScript
Added a function in CScript that checks if the script contains valid opcodes.
Add a test for that function
Diffstat (limited to 'src/script/script.cpp')
| -rw-r--r-- | src/script/script.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/script/script.cpp b/src/script/script.cpp index 70eb8a139..a71fee19c 100644 --- a/src/script/script.cpp +++ b/src/script/script.cpp @@ -267,3 +267,15 @@ std::string CScriptWitness::ToString() const } return ret + ")"; } + +bool CScript::HasValidOps() const +{ + CScript::const_iterator it = begin(); + while (it < end()) { + opcodetype opcode; + if (!GetOp(it, opcode) || opcode > 0xb9) { + return false; + } + } + return true; +} |