diff options
| author | Pieter Wuille <[email protected]> | 2014-10-08 18:48:59 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-10-25 03:03:20 -0700 |
| commit | 698c6abb25c1fbbc7fa4ba46b60e9f17d97332ef (patch) | |
| tree | 96e1a25fa76033be494f9760be03872e5ba554eb /src/script/standard.h | |
| parent | Add SCRIPT_VERIFY_SIGPUSHONLY (BIP62 rule 2) (diff) | |
| download | discoin-698c6abb25c1fbbc7fa4ba46b60e9f17d97332ef.tar.xz discoin-698c6abb25c1fbbc7fa4ba46b60e9f17d97332ef.zip | |
Add SCRIPT_VERIFY_MINIMALDATA (BIP62 rules 3 and 4)
Also use the new flag as a standard rule, and replace the IsCanonicalPush
standardness check with it (as it is more complete).
Diffstat (limited to 'src/script/standard.h')
| -rw-r--r-- | src/script/standard.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/standard.h b/src/script/standard.h index 961b214c8..248b941a6 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -41,6 +41,7 @@ static const unsigned int MANDATORY_SCRIPT_VERIFY_FLAGS = SCRIPT_VERIFY_P2SH; // blocks and we must accept those blocks. static const unsigned int STANDARD_SCRIPT_VERIFY_FLAGS = MANDATORY_SCRIPT_VERIFY_FLAGS | SCRIPT_VERIFY_STRICTENC | + SCRIPT_VERIFY_MINIMALDATA | SCRIPT_VERIFY_NULLDUMMY; // For convenience, standard but not mandatory verify flags. |