aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_importmulti.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-09-10 13:08:13 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-09-10 13:08:06 -0400
commitfa263bcfe4747461e375e186738f73273b015f27 (patch)
tree7cd48d6177c3e05b8a161c821ab337dfb5998bbc /test/functional/wallet_importmulti.py
parent13c842e02816e5bdd7e6dd4d3a60482d9f272708 (diff)
downloadbitcoin-fa263bcfe4747461e375e186738f73273b015f27.tar.xz
qa: Fix silent merge conflict in wallet_importmulti
Diffstat (limited to 'test/functional/wallet_importmulti.py')
-rwxr-xr-xtest/functional/wallet_importmulti.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/functional/wallet_importmulti.py b/test/functional/wallet_importmulti.py
index e71d8a6c39..50c48ab5e0 100755
--- a/test/functional/wallet_importmulti.py
+++ b/test/functional/wallet_importmulti.py
@@ -6,9 +6,15 @@
from test_framework import script
from test_framework.test_framework import BitcoinTestFramework
-from test_framework.util import assert_equal, assert_greater_than, assert_raises_rpc_error
+from test_framework.util import (
+ assert_equal,
+ assert_greater_than,
+ assert_raises_rpc_error,
+ bytes_to_hex_str,
+)
-class ImportMultiTest (BitcoinTestFramework):
+
+class ImportMultiTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 2
self.extra_args = [["-addresstype=legacy"], ["-addresstype=legacy"]]