add default argument to store()

This commit is contained in:
Jacob Brydolf
2016-11-10 12:23:43 +01:00
parent 7c9d2231cc
commit 4e61ebeedb
2 changed files with 3 additions and 3 deletions

View File

@@ -294,8 +294,7 @@ ApplicationWindow {
// Wallet is nomrmally saved to disk on app exit. This prevents rescan from block 0 after app crash
if(isNewWallet){
console.log("Saving wallet after first refresh");
//TODO: Doesn't need path argument after creation. Change libwalletqt
currentWallet.store("")
currentWallet.store()
isNewWallet = false
}