diff options
| author | Pieter Wuille <[email protected]> | 2020-09-11 14:34:24 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2020-10-12 17:18:47 -0700 |
| commit | 3c226639eb134314a0640d34e4ccb6148dbde22f (patch) | |
| tree | c9cef5d292401c93edab0cb4fc1456d9d09d240b /test/functional/test_runner.py | |
| parent | --- [TAPROOT] Tests --- (diff) | |
| download | discoin-3c226639eb134314a0640d34e4ccb6148dbde22f.tar.xz discoin-3c226639eb134314a0640d34e4ccb6148dbde22f.zip | |
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 cb86305cc..b109480a5 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", |