diff options
author | Johnson Lau <jl2012@xbt.hk> | 2016-09-23 13:06:45 +0800 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-13 20:01:45 +0200 |
commit | 0027672c8075d063f376c8c84e1cce77d572d353 (patch) | |
tree | 4b6daa82632013d74d4bf0e5a3d2b22497fa1cf2 /src/script/script_error.h | |
parent | 633c4a1f3690152bdda4b0ac7bcfde22c237183e (diff) |
Make non-minimal OP_IF/NOTIF argument non-standard for P2WSH
Github-Pull: #8526
Rebased-From: c72c5b1e3bd42e84465677e94aa83316ff3d9a14
Diffstat (limited to 'src/script/script_error.h')
-rw-r--r-- | src/script/script_error.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/script_error.h b/src/script/script_error.h index 09dc6945ad..6d34d37925 100644 --- a/src/script/script_error.h +++ b/src/script/script_error.h @@ -39,7 +39,7 @@ typedef enum ScriptError_t SCRIPT_ERR_NEGATIVE_LOCKTIME, SCRIPT_ERR_UNSATISFIED_LOCKTIME, - /* BIP62 */ + /* Malleability */ SCRIPT_ERR_SIG_HASHTYPE, SCRIPT_ERR_SIG_DER, SCRIPT_ERR_MINIMALDATA, @@ -48,6 +48,7 @@ typedef enum ScriptError_t SCRIPT_ERR_SIG_NULLDUMMY, SCRIPT_ERR_PUBKEYTYPE, SCRIPT_ERR_CLEANSTACK, + SCRIPT_ERR_MINIMALIF, /* softfork safeness */ SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS, |