diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-23 11:34:51 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-25 18:08:08 -0400 |
commit | faa4043c660c9a61d304ba1375ce7a32e576ae79 (patch) | |
tree | afbf08cedc6ac0e2f9388ad7641c8f263309ac3f /test/functional/test_framework | |
parent | 9f94483b7ae3a89733d48679e9ac46c0a9b6deef (diff) |
qa: Run more tests with wallet disabled
Diffstat (limited to 'test/functional/test_framework')
-rw-r--r-- | test/functional/test_framework/address.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/test_framework/address.py b/test/functional/test_framework/address.py index d1fb97b024..456d43aa2e 100644 --- a/test/functional/test_framework/address.py +++ b/test/functional/test_framework/address.py @@ -9,8 +9,11 @@ from .util import bytes_to_hex_str, hex_str_to_bytes from . import segwit_addr +ADDRESS_BCRT1_UNSPENDABLE = 'bcrt1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq3xueyj' + chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' + def byte_to_base58(b, version): result = '' str = bytes_to_hex_str(b) |