Browse Source

Merge pull request #947 from Tafelpoot/walletpath2

pass absolute path for new wallet
283
ThomasV 10 years ago
parent
commit
858ab183bb
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -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…
Cancel
Save