commit 1fb0b6d7bd6e3a6deeb101a5d166de556a76de1c
parent f9f6ea436519a3df65591a039a8e18ff358a711c
Author: Janus <ysangkok@gmail.com>
Date: Thu, 19 Jul 2018 13:33:57 +0200
plugins/ledger: just hardcode BTCHIP_DEBUG to False
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/electrum/plugins/ledger/ledger.py b/electrum/plugins/ledger/ledger.py
@@ -12,7 +12,7 @@ from electrum.transaction import Transaction
from electrum.wallet import Standard_Wallet
from ..hw_wallet import HW_PluginBase
from ..hw_wallet.plugin import is_any_tx_output_on_change_branch
-from electrum.util import print_error, is_verbose, bfh, bh2u, versiontuple
+from electrum.util import print_error, bfh, bh2u, versiontuple
from electrum.base_wizard import ScriptTypeNotSupported
try:
@@ -24,7 +24,7 @@ try:
from btchip.btchipFirmwareWizard import checkFirmware, updateFirmware
from btchip.btchipException import BTChipException
BTCHIP = True
- BTCHIP_DEBUG = is_verbose
+ BTCHIP_DEBUG = False
except ImportError:
BTCHIP = False