diff options
author | John Newbery <john@johnnewbery.com> | 2020-08-17 10:45:44 +0100 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2020-08-21 15:53:59 +0100 |
commit | 5e8df3312e47a73e747ee892face55ed9ababeea (patch) | |
tree | 39019aac686a764cce2f4e52a7a62206740e9870 /test/functional/rpc_blockchain.py | |
parent | 85165d4332b0f72d30e0c584b476249b542338e6 (diff) |
test: resort imports
Diffstat (limited to 'test/functional/rpc_blockchain.py')
-rwxr-xr-x | test/functional/rpc_blockchain.py | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index 687222dfef..c005584485 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -22,16 +22,6 @@ from decimal import Decimal import http.client import subprocess -from test_framework.test_framework import BitcoinTestFramework -from test_framework.util import ( - assert_equal, - assert_greater_than, - assert_greater_than_or_equal, - assert_raises, - assert_raises_rpc_error, - assert_is_hex_string, - assert_is_hash_string, -) from test_framework.blocktools import ( create_block, create_coinbase, @@ -42,8 +32,16 @@ from test_framework.messages import ( FromHex, msg_block, ) -from test_framework.p2p import ( - P2PInterface, +from test_framework.p2p import P2PInterface +from test_framework.test_framework import BitcoinTestFramework +from test_framework.util import ( + assert_equal, + assert_greater_than, + assert_greater_than_or_equal, + assert_raises, + assert_raises_rpc_error, + assert_is_hex_string, + assert_is_hash_string, ) |