mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
Merge pull request #947 from Tafelpoot/walletpath2
pass absolute path for new wallet
This commit is contained in:
commit
858ab183bb
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ class ElectrumWindow(QMainWindow):
|
||||||
def new_wallet(self):
|
def new_wallet(self):
|
||||||
import installwizard
|
import installwizard
|
||||||
|
|
||||||
wallet_folder = os.path.dirname(self.wallet.storage.path)
|
wallet_folder = os.path.dirname(os.path.abspath(self.wallet.storage.path))
|
||||||
i = 1
|
i = 1
|
||||||
while True:
|
while True:
|
||||||
filename = "wallet_%d"%i
|
filename = "wallet_%d"%i
|
||||||
|
|
Loading…
Add table
Reference in a new issue