diff options
| author | John Newbery <[email protected]> | 2020-06-11 13:51:12 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2020-09-03 16:47:49 +0100 |
| commit | ea70e6a2ca0e183ef40cdb9b3b86f39e94366015 (patch) | |
| tree | a55b89984224d6292c79be283f4924d6986f138d | |
| parent | [tests] Remove unused optional verify_checksum parameter (diff) | |
| download | discoin-ea70e6a2ca0e183ef40cdb9b3b86f39e94366015.tar.xz discoin-ea70e6a2ca0e183ef40cdb9b3b86f39e94366015.zip | |
[tests] Tidy up imports in address.py
No need to import twice from util.py
| -rw-r--r-- | test/functional/test_framework/address.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/functional/test_framework/address.py b/test/functional/test_framework/address.py index a4ce8a164..5ed3213a0 100644 --- a/test/functional/test_framework/address.py +++ b/test/functional/test_framework/address.py @@ -9,10 +9,7 @@ import unittest from .script import hash256, hash160, sha256, CScript, OP_0 from .segwit_addr import encode_segwit_address -from .util import hex_str_to_bytes - - -from test_framework.util import assert_equal +from .util import assert_equal, hex_str_to_bytes ADDRESS_BCRT1_UNSPENDABLE = 'bcrt1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq3xueyj' ADDRESS_BCRT1_UNSPENDABLE_DESCRIPTOR = 'addr(bcrt1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq3xueyj)#juyq9d97' |