aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-10-08 01:39:53 -0300
committerMarcoFalke <falke.marco@gmail.com>2018-10-08 01:42:02 -0300
commitd12e3d9accae2dd5feccdd073d3390fb876ce7b0 (patch)
tree89b347691e46df0ba84782fdc8125dd17efde284 /test/functional/test_framework
parentab660c8e507fead66417819e9addaadbd04ad2a9 (diff)
parentfaa4043c660c9a61d304ba1375ce7a32e576ae79 (diff)
downloadbitcoin-d12e3d9accae2dd5feccdd073d3390fb876ce7b0.tar.xz
Merge #14324: qa: Run more tests with wallet disabled
faa4043c66 qa: Run more tests with wallet disabled (MarcoFalke) Pull request description: Instead of skipping the whole test, only skip the wallet specific section of a test if the wallet is not compiled in. This is mostly an indentation change, so can be reviewed with `--ignore-all-space`. Tree-SHA512: 5941a8b6b00dca5cf9438c5f6f010ba812115188a69e427d7ade4c1ab8cfe7a57c73daf52c66235dbb24b1cd9ab7c7a17c49bc23d931e041b605d79116a71f66
Diffstat (limited to 'test/functional/test_framework')
-rw-r--r--test/functional/test_framework/address.py3
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)