tRevert "disable p2wpkh for hw wallets for now" - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit f3f43c8f2a3775198c98aa48a90b43d64c22d975
DIR parent d731df3b22fb09eb3b5f3f22118f6334a2e6d4c5
HTML Author: SomberNight <somber.night@protonmail.com>
Date: Fri, 12 Jan 2018 18:46:08 +0100
Revert "disable p2wpkh for hw wallets for now"
This reverts commit e218c4a305d3ba25cce0b76e138332c501bf9298.
Diffstat:
M lib/base_wizard.py | 3 ---
1 file changed, 0 insertions(+), 3 deletions(-)
---
DIR diff --git a/lib/base_wizard.py b/lib/base_wizard.py
t@@ -258,9 +258,6 @@ class BaseWizard(object):
def on_hw_derivation(self, name, device_info, derivation):
from .keystore import hardware_keystore
xtype = keystore.xtype_from_derivation(derivation)
- if xtype not in ('standard', 'p2wpkh-p2sh'):
- self.show_error(_('Hardware wallet support for this script type is not yet enabled.'))
- return
try:
xpub = self.plugin.get_xpub(device_info.device.id_, derivation, xtype, self)
except ScriptTypeNotSupported: