aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-04-11 13:03:03 -0400
committerJohn Newbery <john@johnnewbery.com>2017-06-27 15:51:37 +0100
commit32cffe6bef8974db6bf1536a24bce8c2b2304c52 (patch)
tree5c7264e0e18c3539939337ab14dfd753f8bf755a /test
parent7c87a9c748be7121a240d81f9a5c6c988be6ffcf (diff)
downloadbitcoin-32cffe6bef8974db6bf1536a24bce8c2b2304c52.tar.xz
[tests] Fix import order in getblocktemplate test
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/getblocktemplate_proposals.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/getblocktemplate_proposals.py b/test/functional/getblocktemplate_proposals.py
index fca99c7df5..304eaa20e9 100755
--- a/test/functional/getblocktemplate_proposals.py
+++ b/test/functional/getblocktemplate_proposals.py
@@ -4,13 +4,13 @@
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test block proposals with getblocktemplate."""
-from test_framework.test_framework import BitcoinTestFramework
-from test_framework.util import *
-
from binascii import a2b_hex, b2a_hex
from hashlib import sha256
from struct import pack
+from test_framework.test_framework import BitcoinTestFramework
+from test_framework.util import *
+
def b2x(b):
return b2a_hex(b).decode('ascii')