diff options
| author | Pieter Wuille <[email protected]> | 2014-10-08 15:46:54 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-10-08 15:48:57 -0700 |
| commit | bf7b4fc6d3bdfd9283a633da7833a5ec6fa3cd85 (patch) | |
| tree | afb1a13bbabe88337c1f7ebe7acc86cea4286535 /src/test/transaction_tests.cpp | |
| parent | Merge pull request #4834 (diff) | |
| parent | Make SCRIPT_VERIFY_STRICTENC compatible with BIP62 (diff) | |
| download | discoin-bf7b4fc6d3bdfd9283a633da7833a5ec6fa3cd85.tar.xz discoin-bf7b4fc6d3bdfd9283a633da7833a5ec6fa3cd85.zip | |
Merge pull request #5004
9df9cf5 Make SCRIPT_VERIFY_STRICTENC compatible with BIP62 (Pieter Wuille)
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 f14f600bb..18cb8f3d1 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -31,6 +31,7 @@ static std::map<string, unsigned int> mapFlagNames = boost::assign::map_list_of (string("NONE"), (unsigned int)SCRIPT_VERIFY_NONE) (string("P2SH"), (unsigned int)SCRIPT_VERIFY_P2SH) (string("STRICTENC"), (unsigned int)SCRIPT_VERIFY_STRICTENC) + (string("DERSIG"), (unsigned int)SCRIPT_VERIFY_DERSIG) (string("LOW_S"), (unsigned int)SCRIPT_VERIFY_LOW_S) (string("NULLDUMMY"), (unsigned int)SCRIPT_VERIFY_NULLDUMMY); |