From 0691b483b7694397849125c65f3f67d9a232770a Mon Sep 17 00:00:00 2001 From: Jacob Brydolf Date: Mon, 17 Oct 2016 22:43:01 +0200 Subject: [PATCH] Don't send path as argument on wallet store (windows fix) --- main.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.qml b/main.qml index f865a2db..5f7035f7 100644 --- a/main.qml +++ b/main.qml @@ -246,8 +246,9 @@ ApplicationWindow { leftPanel.daemonProgress.updateProgress(dCurrentBlock,dTargetBlock); // Store wallet after every refresh. - currentWallet.store(walletPath()) - console.log("Saving to "+walletPath()); + //TODO: Doesn't need path after creation. Change libwalletqt + currentWallet.store("") + console.log("Saving wallet"); isNewWallet = false // initialize transaction history once wallet is initializef first time;