diff options
| author | practicalswift <[email protected]> | 2018-07-07 00:10:35 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-08-13 14:13:39 +0200 |
| commit | 68400d8b9675d00ea7126b432e208c1e52658c2e (patch) | |
| tree | 12ad631a45a068b40d63cbf6fd933a57f94dc971 /test/functional/feature_pruning.py | |
| parent | Merge #13666: Always create signatures with Low R values (diff) | |
| download | discoin-68400d8b9675d00ea7126b432e208c1e52658c2e.tar.xz discoin-68400d8b9675d00ea7126b432e208c1e52658c2e.zip | |
tests: Use explicit imports
Diffstat (limited to 'test/functional/feature_pruning.py')
| -rwxr-xr-x | test/functional/feature_pruning.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/feature_pruning.py b/test/functional/feature_pruning.py index 7b5ea4564..c8f4b7f8b 100755 --- a/test/functional/feature_pruning.py +++ b/test/functional/feature_pruning.py @@ -10,7 +10,8 @@ This test takes 30 mins or more (up to 2 hours) """ from test_framework.test_framework import BitcoinTestFramework -from test_framework.util import * +from test_framework.util import assert_equal, assert_greater_than, assert_raises_rpc_error, connect_nodes, mine_large_block, sync_blocks, wait_until + import os MIN_BLOCKS_TO_KEEP = 288 |