1
0

improve wallet open flow

remove load_wallet from walletDB, route all wallet loading through QEDaemon.
QEDaemon emits walletLoaded and walletRequiresPassword signals. main.qml opens
OpenWallet view when extra user interaction is needed
This commit is contained in:
Sander van Grieken
2022-03-10 12:25:18 +01:00
parent 539197e8f3
commit 670882c3c0
6 changed files with 78 additions and 42 deletions

View File

@@ -67,5 +67,12 @@ Item {
}
Connections {
target: Daemon
function onWalletLoaded() {
tabbar.setCurrentIndex(1)
}
}
}