From 2c096f966946dd60baaca1af56623c488015eb89 Mon Sep 17 00:00:00 2001 From: BTChip Date: Fri, 19 Sep 2014 16:02:09 +0200 Subject: [PATCH] Add firmware check --- plugins/btchipwallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/btchipwallet.py b/plugins/btchipwallet.py index dcc35d62..977f2af1 100644 --- a/plugins/btchipwallet.py +++ b/plugins/btchipwallet.py @@ -27,7 +27,7 @@ try: from btchip.btchipUtils import compress_public_key,format_transaction, get_regular_input_script from btchip.bitcoinTransaction import bitcoinTransaction from btchip.btchipPersoWizard import StartBTChipPersoDialog - from btchip.btchipFirmwareWizard import updateFirmware + from btchip.btchipFirmwareWizard import checkFirmware, updateFirmware from btchip.btchipException import BTChipException BTCHIP = True BTCHIP_DEBUG = False @@ -143,7 +143,7 @@ class BTChipWallet(NewWallet): d.setWaitImpl(DongleWaitQT(d)) self.client = btchip(d) firmware = self.client.getFirmwareVersion()['version'].split(".") - if int(firmware[0]) <> 1 or int(firmware[1]) <> 4 or int(firmware[2]) < 9: + if (not checkFirmware(firmware)) or (int(firmware[0]) <> 1) or (int(firmware[1]) <> 4) or (int(firmware[2]) < 9): d.close() try: updateFirmware()