diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-07-07 00:10:35 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-08-13 14:13:39 +0200 |
commit | 68400d8b9675d00ea7126b432e208c1e52658c2e (patch) | |
tree | 12ad631a45a068b40d63cbf6fd933a57f94dc971 /test/functional/p2p_mempool.py | |
parent | 2115cba9c60504ed1c0af8a56c5d90b5fd415497 (diff) |
tests: Use explicit imports
Diffstat (limited to 'test/functional/p2p_mempool.py')
-rwxr-xr-x | test/functional/p2p_mempool.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/p2p_mempool.py b/test/functional/p2p_mempool.py index bdf51778ef..a8fcb181e6 100755 --- a/test/functional/p2p_mempool.py +++ b/test/functional/p2p_mempool.py @@ -8,9 +8,10 @@ Test that nodes are disconnected if they send mempool messages when bloom filters are not enabled. """ -from test_framework.mininode import * +from test_framework.messages import msg_mempool +from test_framework.mininode import P2PInterface from test_framework.test_framework import BitcoinTestFramework -from test_framework.util import * +from test_framework.util import assert_equal class P2PMempoolTests(BitcoinTestFramework): def set_test_params(self): |