diff --git a/tests/test_basic.py b/tests/test_basic.py index 35c9e7583e..ecb751584e 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -19,12 +19,12 @@ class TestBasic(unittest.TestCase): def setUp(self): self.debug_transport = config.DEBUG_TRANSPORT(*config.DEBUG_TRANSPORT_ARGS) self.transport = config.TRANSPORT(*config.TRANSPORT_ARGS) - self.bitkey = BitkeyClient(self.transport, DebugLink(self.debug_transport), algo=proto.ELECTRUM) + self.bitkey = BitkeyClient(self.transport, DebugLink(self.debug_transport), algo=proto.ELECTRUM, debug=True) - self.bitkey.setup_debuglink(pin_correct=True, otp_correct=True) + self.bitkey.setup_debuglink(button=True, pin_correct=True, otp_correct=True) self.bitkey.load_device(seed='beyond neighbor scratch swirl embarrass doll cause also stick softly physical nice', - otp=True, pin='1234', spv=True, button=True) + otp=True, pin='1234', spv=True) print "Setup finished" print "--------------" diff --git a/tests/test_signtx.py b/tests/test_signtx.py index 5aa163fc31..08a9b56378 100644 --- a/tests/test_signtx.py +++ b/tests/test_signtx.py @@ -23,6 +23,8 @@ class TestSignTx(unittest.TestCase): def tearDown(self): self.debug_transport.close() self.transport.close() - + +''' def test_signtx(self): - print self.bitkey.sign_tx([], []) \ No newline at end of file + print self.bitkey.sign_tx([], []) +''' \ No newline at end of file