(name)
| 21 | |
| 22 | |
| 23 | def load_test_vectors(name): |
| 24 | with open(os.path.dirname(__file__) + '/data/' + name, 'r') as fd: |
| 25 | for testcase in json.load(fd): |
| 26 | yield testcase |
| 27 | |
| 28 | def to_scriptPubKey(witver, witprog): |
| 29 | """Decoded bech32 address to script""" |
no outgoing calls
no test coverage detected