aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2017-12-05 23:00:43 +0100
committerpracticalswift <[email protected]>2017-12-10 11:48:36 +0100
commitc7399e7082805de6d04e9bf2e8bacd49e3adaae5 (patch)
tree85cec4c5296962bab33a9d98f50158c82464e7d5
parentMerge #11740: Implement BIP159 NODE_NETWORK_LIMITED (pruned peers) *signaling... (diff)
downloaddiscoin-c7399e7082805de6d04e9bf2e8bacd49e3adaae5.tar.xz
discoin-c7399e7082805de6d04e9bf2e8bacd49e3adaae5.zip
Remove unused Python imports
-rwxr-xr-xtest/functional/example_test.py1
-rw-r--r--test/functional/test_framework/messages.py2
-rwxr-xr-xtest/functional/test_framework/test_framework.py1
3 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/example_test.py b/test/functional/example_test.py
index 289fa248e..35a6bd267 100755
--- a/test/functional/example_test.py
+++ b/test/functional/example_test.py
@@ -22,7 +22,6 @@ from test_framework.mininode import (
mininode_lock,
msg_block,
msg_getdata,
- NODE_NETWORK,
)
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index eee24910c..2ab1bdac0 100644
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -24,7 +24,7 @@ import struct
import time
from test_framework.siphash import siphash256
-from test_framework.util import hex_str_to_bytes, bytes_to_hex_str, wait_until
+from test_framework.util import hex_str_to_bytes, bytes_to_hex_str
MIN_VERSION_SUPPORTED = 60001
MY_VERSION = 70014 # past bip-31 for ping/pong
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py
index 54fe68968..a46312d62 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -13,7 +13,6 @@ import shutil
import sys
import tempfile
import time
-import traceback
from .authproxy import JSONRPCException
from . import coverage