qml: add wallets search option#10741
Conversation
…h string matches exact wallet name
| local_password = password # need this in local scope | ||
| wallet = None | ||
| try: | ||
| wallet = self.daemon.load_wallet( |
There was a problem hiding this comment.
Daemon.load_wallet() sets config.RECENTLY_OPEN_WALLET_FILES and config.CURRENT_WALLET causing the app to open a hidden wallet on the next restart if it was the last opened wallet before.
Should we allow this? In the end the user might be forced to open the app (e.g. with the fingerprint) and then their secret wallet would show up. Maybe we should just open the wallet list on startup or the last non-hidden wallet.
|
Should we make the user aware of this feature somehow, either in the wallet details view (renaming) or in the wizard? Considering that the experience of creating a new wallet in the wizard is already stressful for users it might be better to not add even more mental load to the wizard and show it somewhere else? Or maybe a "Hide" button (e.g. in the rename box or somewhere else in the wallet details view), that when clicked, automatically changes the name and opens a popup explaining the user how they can access their wallet through the search box? |
qml: add wallets search option, allow loading hidden wallet iff search string matches exact wallet name
ref #10715
ref #10688