-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add wallet rescans to Properties #59
Comments
what would this measure? |
%age of scan complete, similar to sync. @chrisguida suggested this could be a health check, although it would really only be relevant during a wallet scan. The rest of the time it's perhaps clutter |
This could also go in properties |
What do you want to happen in if there is no wallet scan in progress? A green health check? No health check? |
We could disable it if there's no scan in progress. Would probably want an option in the UI to hide it if it's disabled. A better solution is probably to just put it in properties, rather than implement this as a health check. |
+1 |
Is there an action to start a wallet rescan or does it have to be triggered from CLI I think an action like this could be created: actions:
# ...
# reindex
# delete-peers
# ...
rescan:
name: "Rescan Blockchain"
description: "Rescans the blockchain for Bitcoin Core wallet transactions. Useful when recovering old wallets on StartOS apps that depend on Bitcoin Core wallet functionalities."
warning: The rescan will start from block zero and can take several hours to finish.
allowed-statuses:
- running
implementation:
type: script # something that triggers bitcoin-cli rescanblockchain
# ... Ideally, a parameter can be passed for the |
In order to give user feedback without them going into the logs and discovering "benign" RPC errors
The text was updated successfully, but these errors were encountered: