aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/key.py
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2020-05-02 13:59:00 -0700
committerPieter Wuille <pieter@wuille.net>2020-06-09 17:50:50 -0700
commitc75de5da5fdd3a304f9da3d8a2e0370d1723ddd0 (patch)
tree5da616ca84e1c1f94457e95fb71615684afc6300 /test/functional/test_framework/key.py
parentf8364df25070cea08f0fb5bbbb212f1ff72f9d21 (diff)
downloadbitcoin-c75de5da5fdd3a304f9da3d8a2e0370d1723ddd0.tar.xz
[TESTS] Move base58 to own module to break circular dependency
This breaks the script->key->address->script dependency cycle.
Diffstat (limited to 'test/functional/test_framework/key.py')
-rw-r--r--test/functional/test_framework/key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/key.py b/test/functional/test_framework/key.py
index f2d6fba4a6..5a6d0b912b 100644
--- a/test/functional/test_framework/key.py
+++ b/test/functional/test_framework/key.py
@@ -8,7 +8,7 @@ keys, and is trivially vulnerable to side channel attacks. Do not use for
anything but tests."""
import random
-from .address import byte_to_base58
+from .base58 import byte_to_base58
def modinv(a, n):
"""Compute the modular inverse of a modulo n