keep restoring state until first refresh is finished

This commit is contained in:
Jacob Brydolf 2016-10-28 00:24:02 +02:00
parent d22e02ac2a
commit 6aa5ced4f7
No known key found for this signature in database
GPG Key ID: DE46246550D2F3C5
1 changed files with 12 additions and 8 deletions

View File

@ -246,9 +246,18 @@ ApplicationWindow {
leftPanel.daemonProgress.updateProgress(dCurrentBlock,dTargetBlock);
// Store wallet after every refresh.
//TODO: Doesn't need path after creation. Change libwalletqt
currentWallet.store("")
console.log("Saving wallet");
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();