Do not display exchanged APDUs

This commit is contained in:
BTChip 2014-08-31 18:55:31 +02:00
parent 79588eb4da
commit 5f970e010f
1 changed files with 3 additions and 2 deletions

View File

@ -29,6 +29,7 @@ try:
from btchip.btchipPersoWizard import StartBTChipPersoDialog
from btchip.btchipException import BTChipException
BTCHIP = True
BTCHIP_DEBUG = False
except ImportError:
BTCHIP = False
@ -141,7 +142,7 @@ class BTChipWallet(NewWallet):
aborted = False
if not self.client or self.client.bad:
try:
d = getDongle(True)
d = getDongle(BTCHIP_DEBUG)
d.setWaitImpl(DongleWaitQT(d))
self.client = btchip(d)
firmware = self.client.getFirmwareVersion()['version'].split(".")
@ -159,7 +160,7 @@ class BTChipWallet(NewWallet):
dialog = StartBTChipPersoDialog()
dialog.exec_()
# Then fetch the reference again as it was invalidated
d = getDongle(True)
d = getDongle(BTCHIP_DEBUG)
d.setWaitImpl(DongleWaitQT(d))
self.client = btchip(d)
else: