URI: 
       tcli restore: fix imported privkeys with password - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit ff454ab29dd374fb2998ef748ab3969e13e0f172
   DIR parent e1fb75a81df87175402b4bfe851bbaf5434e0090
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Mon,  3 Dec 2018 12:46:12 +0100
       
       cli restore: fix imported privkeys with password
       
       closes #4894
       
       Diffstat:
         M electrum/commands.py                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/commands.py b/electrum/commands.py
       t@@ -176,7 +176,7 @@ class Commands:
                    storage.put('keystore', k.dump())
                    wallet = Imported_Wallet(storage)
                    keys = keystore.get_private_keys(text)
       -            good_inputs, bad_inputs = wallet.import_private_keys(keys, password)
       +            good_inputs, bad_inputs = wallet.import_private_keys(keys, None)
                    # FIXME tell user about bad_inputs
                    if not good_inputs:
                        raise Exception("None of the given privkeys can be imported")