diff options
| author | Johnson Lau <[email protected]> | 2016-09-22 15:06:54 +0800 |
|---|---|---|
| committer | Johnson Lau <[email protected]> | 2016-09-27 23:40:59 +0800 |
| commit | e41bd449ab2b8d01260795383af2c40b659d8587 (patch) | |
| tree | ec0bc7f8b5624774199b09072fdcee0ed66f6122 /src/script/interpreter.h | |
| parent | Merge #8526: Make non-minimal OP_IF/NOTIF argument non-standard for P2WSH (diff) | |
| download | discoin-e41bd449ab2b8d01260795383af2c40b659d8587.tar.xz discoin-e41bd449ab2b8d01260795383af2c40b659d8587.zip | |
Add policy: null signature for failed CHECK(MULTI)SIG
Diffstat (limited to 'src/script/interpreter.h')
| -rw-r--r-- | src/script/interpreter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/script/interpreter.h b/src/script/interpreter.h index 2ce4b23e5..0adc9482f 100644 --- a/src/script/interpreter.h +++ b/src/script/interpreter.h @@ -98,6 +98,10 @@ enum // Segwit script only: Require the argument of OP_IF/NOTIF to be exactly 0x01 or empty vector // SCRIPT_VERIFY_MINIMALIF = (1U << 13), + + // Signature(s) must be empty vector if an CHECK(MULTI)SIG operation failed + // + SCRIPT_VERIFY_NULLFAIL = (1U << 14), }; bool CheckSignatureEncoding(const std::vector<unsigned char> &vchSig, unsigned int flags, ScriptError* serror); |