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