Browse Source

Bugfix: recovered wallet file location

Prior to this commit, the recoverWallet method in Qt
was specifying a directory `./wallets` instead of the
same directory in the datadir location.
master
Adam Gibson 6 years ago
parent
commit
d8fef959f9
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 3
      scripts/joinmarket-qt.py

3
scripts/joinmarket-qt.py

@ -1570,7 +1570,8 @@ class JMMainWindow(QMainWindow):
def recoverWallet(self):
try:
success = wallet_generate_recover_bip39(
"recover", "wallets", "wallet.jmdat",
"recover", os.path.join(jm_single().datadir, 'wallets'),
"wallet.jmdat",
display_seed_callback=None,
enter_seed_callback=self.seedEntry,
enter_wallet_password_callback=self.getPassword,

Loading…
Cancel
Save