commit d8b1ddc9a7ef1894310f5d7f1bc1156a50b27061
parent 79588eb4dacb40607bd014082b0bea781687ba64
Author: ThomasV <thomasv1@gmx.de>
Date: Mon, 1 Sep 2014 10:01:41 +0200
Merge pull request #811 from btchip/no_verbose_apdus
Do not display exchanged APDUs
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/plugins/btchipwallet.py b/plugins/btchipwallet.py
@@ -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: