diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-05-02 21:12:36 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-05-02 21:12:36 +0200 |
commit | 0c60c63de0b6306b586727bb327d00549de4abe8 (patch) | |
tree | aefd16ff048c9291be7858efb5e75c308a233678 /test | |
parent | 75171f099e82e3527d7c3469b15891bd92227ec2 (diff) |
Remove unused Python imports
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/blockchain.py | 2 | ||||
-rwxr-xr-x | test/functional/net.py | 1 | ||||
-rwxr-xr-x | test/functional/rpcnamedargs.py | 1 | ||||
-rwxr-xr-x | test/functional/signmessages.py | 1 | ||||
-rwxr-xr-x | test/functional/wallet-accounts.py | 1 | ||||
-rwxr-xr-x | test/functional/wallet-hd.py | 1 |
6 files changed, 0 insertions, 7 deletions
diff --git a/test/functional/blockchain.py b/test/functional/blockchain.py index 00ae3d7572..2ed1b064a1 100755 --- a/test/functional/blockchain.py +++ b/test/functional/blockchain.py @@ -23,8 +23,6 @@ from test_framework.util import ( assert_raises_jsonrpc, assert_is_hex_string, assert_is_hash_string, - start_nodes, - connect_nodes_bi, ) diff --git a/test/functional/net.py b/test/functional/net.py index 16476f7d34..fb46064441 100755 --- a/test/functional/net.py +++ b/test/functional/net.py @@ -15,7 +15,6 @@ from test_framework.util import ( assert_raises_jsonrpc, connect_nodes_bi, p2p_port, - start_nodes, ) diff --git a/test/functional/rpcnamedargs.py b/test/functional/rpcnamedargs.py index fd81b02ead..3b286000a1 100755 --- a/test/functional/rpcnamedargs.py +++ b/test/functional/rpcnamedargs.py @@ -8,7 +8,6 @@ from test_framework.test_framework import BitcoinTestFramework from test_framework.util import ( assert_equal, assert_raises_jsonrpc, - start_nodes, ) diff --git a/test/functional/signmessages.py b/test/functional/signmessages.py index bfde8e40ec..42f6a9daaf 100755 --- a/test/functional/signmessages.py +++ b/test/functional/signmessages.py @@ -5,7 +5,6 @@ """Test RPC commands for signing and verifying messages.""" from test_framework.test_framework import BitcoinTestFramework -from test_framework.util import * class SignMessagesTest(BitcoinTestFramework): diff --git a/test/functional/wallet-accounts.py b/test/functional/wallet-accounts.py index 8dc1589117..e6635bea1c 100755 --- a/test/functional/wallet-accounts.py +++ b/test/functional/wallet-accounts.py @@ -15,7 +15,6 @@ RPCs tested are: from test_framework.test_framework import BitcoinTestFramework from test_framework.util import ( - start_nodes, assert_equal, ) diff --git a/test/functional/wallet-hd.py b/test/functional/wallet-hd.py index bbf53e7dba..aab3b4bc2d 100755 --- a/test/functional/wallet-hd.py +++ b/test/functional/wallet-hd.py @@ -6,7 +6,6 @@ from test_framework.test_framework import BitcoinTestFramework from test_framework.util import ( - start_nodes, start_node, assert_equal, connect_nodes_bi, |