diff options
author | Pieter Wuille <pieter@wuille.net> | 2020-09-11 14:34:24 -0700 |
---|---|---|
committer | Pieter Wuille <pieter@wuille.net> | 2020-10-12 17:18:47 -0700 |
commit | 3c226639eb134314a0640d34e4ccb6148dbde22f (patch) | |
tree | c9cef5d292401c93edab0cb4fc1456d9d09d240b /test/functional/test_runner.py | |
parent | 206fb180ec6ee5f916afc6f574000d716daf79b7 (diff) |
tests: add BIP340 Schnorr signature support to test framework
Add a pure Python implementation of BIP340 signing and verification, tested against
the BIP's test vectors.
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-x | test/functional/test_runner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index cb86305cc6..b109480a59 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -70,6 +70,7 @@ TEST_FRAMEWORK_MODULES = [ "address", "blocktools", "muhash", + "key", "script", "segwit_addr", "util", |