fix(spv): clear stale SPV state and banner on backend mode switch#669
Closed
thepastaclaw wants to merge 1 commit intodashpay:v1.0-devfrom
Closed
fix(spv): clear stale SPV state and banner on backend mode switch#669thepastaclaw wants to merge 1 commit intodashpay:v1.0-devfrom
thepastaclaw wants to merge 1 commit intodashpay:v1.0-devfrom
Conversation
Contributor
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Collaborator
Author
|
Duplicate of #668 — I opened this without checking that Codex had already created a PR. Closing. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue
When switching from SPV to RPC backend mode, two related issues could leave stale SPV state visible to the user:
Stale SPV state leak (Medium):
refresh_zmq_and_spv()enters theRpcbranch but never clearsspv_no_peers_sinceorspv_connected_peers. If the mode switch happens without a fullreset(), the degraded peer timer persists.Banner not cleared on mode switch (Low-Medium): The SPV degraded banner is only managed inside
if core_backend_mode() == Spv. Switching away while the banner is showing leaves it stuck.Found in code review of #658.
Changes
connection_status.rs: Clearspv_connected_peersandspv_no_peers_sinceat the top of theRpcbranch inrefresh_zmq_and_spv().app.rs: Add anelsebranch to unconditionally clear the SPV degraded banner when not in SPV mode.Testing
cargo checkpasses.