Browse Source

Merge pull request #8529 from Toporin/patch_parse_URI

Patch error caused by the method "parse_URI()" being moved to bip21.py and renamed "parse_bip21_URI"
master
ThomasV 2 years ago committed by GitHub
parent
commit
63a5ca4f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      electrum/plugins/hw_wallet/qt.py

3
electrum/plugins/hw_wallet/qt.py

@ -40,7 +40,8 @@ from electrum.gui.qt.installwizard import InstallWizard
from electrum.i18n import _
from electrum.logging import Logger
from electrum.util import parse_URI, InvalidBitcoinURI, UserCancelled, UserFacingException
from electrum.util import UserCancelled, UserFacingException
from electrum.bip21 import parse_bip21_URI, InvalidBitcoinURI
from electrum.plugin import hook, DeviceUnpairableError
from .plugin import OutdatedHwFirmwareException, HW_PluginBase, HardwareHandlerBase

Loading…
Cancel
Save