aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_net.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/rpc_net.py
parent85165d4332b0f72d30e0c584b476249b542338e6 (diff)
downloadbitcoin-5e8df3312e47a73e747ee892face55ed9ababeea.tar.xz
test: resort imports
Diffstat (limited to 'test/functional/rpc_net.py')
-rwxr-xr-xtest/functional/rpc_net.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/rpc_net.py b/test/functional/rpc_net.py
index f952f91c74..068a76f36b 100755
--- a/test/functional/rpc_net.py
+++ b/test/functional/rpc_net.py
@@ -9,6 +9,12 @@ Tests correspond to code in rpc/net.cpp.
from decimal import Decimal
+from test_framework.p2p import P2PInterface
+import test_framework.messages
+from test_framework.messages import (
+ NODE_NETWORK,
+ NODE_WITNESS,
+)
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,
@@ -19,12 +25,6 @@ from test_framework.util import (
p2p_port,
wait_until,
)
-from test_framework.p2p import P2PInterface
-import test_framework.messages
-from test_framework.messages import (
- NODE_NETWORK,
- NODE_WITNESS,
-)
def assert_net_servicesnames(servicesflag, servicenames):