Merge pull request #90

6aa5ced keep restoring state until first refresh is finished (Jacob Brydolf)
This commit is contained in:
Riccardo Spagni 2016-10-29 10:53:01 +02:00
commit 6c6b10855f
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

View File

@ -246,9 +246,18 @@ ApplicationWindow {
leftPanel.daemonProgress.updateProgress(dCurrentBlock,dTargetBlock);
// Store wallet after every refresh.
if (currentWallet.blockChainHeight() > 1){
//TODO: Doesn't need path after creation. Change libwalletqt
currentWallet.store("")
console.log("Saving wallet");
// recovering from seed is finished after first refresh
if(persistentSettings.is_recovering) {
persistentSettings.is_recovering = false
}
}
isNewWallet = false
// initialize transaction history once wallet is initializef first time;
@ -257,11 +266,6 @@ ApplicationWindow {
walletInitialized = true
}
// recovering from seed is finished after first refresh
if(persistentSettings.is_recovering) {
persistentSettings.is_recovering = false
}
leftPanel.networkStatus.connected = currentWallet.connected
onWalletUpdate();