Skip to content
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

Allow disabling wallet background syncing #508

Merged
merged 1 commit into from
Mar 28, 2025

Conversation

alexanderwiederin
Copy link
Contributor

@alexanderwiederin alexanderwiederin commented Mar 25, 2025

Allow disabling background wallet synchronization

Closes #310.

Changes:

  • Implements BackgroundSyncConfig to allow disabling background wallet syncs
  • Allows users to explicitly disable background wallet synchronization
  • Sets intervals to minimum threshold if specified value is below it

Breaking Change:
Existing implementations may need updates to accommodate the new configuration structure.

Implementation Notes:
The BackgroundSyncConfig may be reused for other backend implementations.

Context:
Some users have setups where they need to rely exclusively on manual syncing via sync_wallets(). Previously, they had to set intervals to u64::MAX as a workaround to effectively disable background syncing. This implementation provides a cleaner, more explicit approach for controlling sync behavior when manual syncing is preferred.

@alexanderwiederin alexanderwiederin marked this pull request as draft March 25, 2025 16:08
Copy link
Collaborator

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for looking into this!

@alexanderwiederin alexanderwiederin force-pushed the optional-wallet-sync branch 5 times, most recently from e506206 to 29469ac Compare March 26, 2025 12:45
@alexanderwiederin alexanderwiederin marked this pull request as ready for review March 26, 2025 13:44
Copy link
Collaborator

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Already looks pretty good, some comments.

@alexanderwiederin alexanderwiederin marked this pull request as draft March 27, 2025 10:28
Copy link
Collaborator

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, I think, please squash the fixups and undraft the PR.

Please also update the commit message to give some context on what the changes are and why we're applying them. Going forward it would also be nice if you could clearly mark fixup commits (e.g., via a f or fixup prefix in the first line of the message). See https://cbea.ms/git-commit/ for some guidance on how to write good commit messages.

Implements BackgroundSyncConfig to control background wallet synchronization behavior.

- Allows users to explicitly disable background wallet synchronization
- Sets intervals to minimum threshold if specified value is below it

Context:
Some users have setups where they need to rely exclusively on manual syncing.
Previously, they had to set intervals to u64::MAX as a workaround to effectively
disable background syncing. This implementation provides a cleaner, explicit
approach for controlling sync behavior when manual syncing via sync_wallets()
is preferred.

Breaking change: Existing implementations may need updates to accommodate
the new configuration structure.

Closes lightningdevkit#310
@alexanderwiederin alexanderwiederin marked this pull request as ready for review March 27, 2025 12:43
Copy link
Collaborator

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@tnull tnull merged commit 0dd78ee into lightningdevkit:main Mar 28, 2025
14 of 15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow disabling wallet background syncing
2 participants