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/mempool_resurrect.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/mempool_resurrect.py')
| -rwxr-xr-x | test/functional/mempool_resurrect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/mempool_resurrect.py b/test/functional/mempool_resurrect.py index 7ae0d95b9..5884a4f45 100755 --- a/test/functional/mempool_resurrect.py +++ b/test/functional/mempool_resurrect.py @@ -4,9 +4,9 @@ # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Test resurrection of mined transactions when the blockchain is re-organized.""" -from test_framework.test_framework import BitcoinTestFramework from test_framework.blocktools import create_raw_transaction -from test_framework.util import * +from test_framework.test_framework import BitcoinTestFramework +from test_framework.util import assert_equal class MempoolCoinbaseTest(BitcoinTestFramework): |