diff options
author | Johnson Lau <jl2012@users.noreply.github.com> | 2016-09-22 15:06:54 +0800 |
---|---|---|
committer | Johnson Lau <jl2012@xbt.hk> | 2016-09-27 23:40:59 +0800 |
commit | e41bd449ab2b8d01260795383af2c40b659d8587 (patch) | |
tree | ec0bc7f8b5624774199b09072fdcee0ed66f6122 /src/test/transaction_tests.cpp | |
parent | 5a4f6d72e6154d21eb34fbbc8d7c099532569966 (diff) |
Add policy: null signature for failed CHECK(MULTI)SIG
Diffstat (limited to 'src/test/transaction_tests.cpp')
-rw-r--r-- | src/test/transaction_tests.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index 165dfd9a3e..6163d2f630 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -51,6 +51,7 @@ static std::map<string, unsigned int> mapFlagNames = boost::assign::map_list_of (string("DISCOURAGE_UPGRADABLE_NOPS"), (unsigned int)SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS) (string("CLEANSTACK"), (unsigned int)SCRIPT_VERIFY_CLEANSTACK) (string("MINIMALIF"), (unsigned int)SCRIPT_VERIFY_MINIMALIF) + (string("NULLFAIL"), (unsigned int)SCRIPT_VERIFY_NULLFAIL) (string("CHECKLOCKTIMEVERIFY"), (unsigned int)SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY) (string("CHECKSEQUENCEVERIFY"), (unsigned int)SCRIPT_VERIFY_CHECKSEQUENCEVERIFY) (string("WITNESS"), (unsigned int)SCRIPT_VERIFY_WITNESS) |