URI: 
       tledger: workaround to avoid on-device warning for unusual der path - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit e60aede77ed4cccede0c8416c039ea7ad204c40d
   DIR parent 546c0e1bb6ec132eb2dacab116f09fed0bff119c
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Tue,  6 Oct 2020 17:55:29 +0200
       
       ledger: workaround to avoid on-device warning for unusual der path
       
       related: #6512
       
       Diffstat:
         M electrum/plugins/ledger/ledger.py   |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/plugins/ledger/ledger.py b/electrum/plugins/ledger/ledger.py
       t@@ -644,7 +644,7 @@ class LedgerPlugin(HW_PluginBase):
                device_id = device_info.device.id_
                client = self.scan_and_create_client_for_device(device_id=device_id, wizard=wizard)
                wizard.run_task_without_blocking_gui(
       -            task=lambda: client.get_xpub("m/44'/0'", 'standard'))  # TODO replace by direct derivation once Nano S > 1.1
       +            task=lambda: client.get_xpub("m/0'", 'standard'))  # TODO replace by direct derivation once Nano S > 1.1
                return client
        
            def get_xpub(self, device_id, derivation, xtype, wizard):