aboutsummaryrefslogtreecommitdiff
path: root/test/functional/p2p_eviction.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2020-08-17 10:45:44 +0100
committerJohn Newbery <john@johnnewbery.com>2020-08-21 15:53:59 +0100
commit5e8df3312e47a73e747ee892face55ed9ababeea (patch)
tree39019aac686a764cce2f4e52a7a62206740e9870 /test/functional/p2p_eviction.py
parent85165d4332b0f72d30e0c584b476249b542338e6 (diff)
downloadbitcoin-5e8df3312e47a73e747ee892face55ed9ababeea.tar.xz
test: resort imports
Diffstat (limited to 'test/functional/p2p_eviction.py')
-rwxr-xr-xtest/functional/p2p_eviction.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/p2p_eviction.py b/test/functional/p2p_eviction.py
index e076f8d8df..848df4a585 100755
--- a/test/functional/p2p_eviction.py
+++ b/test/functional/p2p_eviction.py
@@ -15,11 +15,11 @@ Therefore, this test is limited to the remaining protection criteria.
import time
-from test_framework.test_framework import BitcoinTestFramework
-from test_framework.p2p import P2PInterface, P2PDataStore
-from test_framework.util import assert_equal, wait_until
from test_framework.blocktools import create_block, create_coinbase
from test_framework.messages import CTransaction, FromHex, msg_pong, msg_tx
+from test_framework.p2p import P2PDataStore, P2PInterface
+from test_framework.test_framework import BitcoinTestFramework
+from test_framework.util import assert_equal, wait_until
class SlowP2PDataStore(P2PDataStore):