CSHLD-783: add support for custom checkpoints#337
Open
Ranjna-G wants to merge 1 commit into
Open
Conversation
The shielded tree's checkpoint retention (reorg-depth tolerance) was hardcoded to 100. indexer-utxo needs per-tree control over this value. Adds an optional max_checkpoints field to the from_frontier request, defaulting to 100 when absent. Since fromState/save use raw persisted bytes with no proto wrapper, capacity is also stored inside the persisted tree state so it survives a save/restore round-trip. Ticket: CSHLD-783
Ranjna-G
marked this pull request as ready for review
July 27, 2026 09:22
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.
Summary
Makes the shielded tree's checkpoint retention capacity (reorg-depth tolerance) configurable per-tree instead of hardcoded to 100, so
indexer-utxocan control it. Default behavior is unchanged when not specified.Ticket: CSHLD-783
Changes
max_checkpointsfield to thefrom_frontierprotobuf request.fromState/saveuse raw persisted bytes (no proto wrapper), capacity is also stored inside the persisted tree state so it survives a save/restore round-trip.fromFrontieraccepting a nullablemaxCheckpoints; existing 2-arg overload unchanged.Test Plan
cargo test— Rust unit tests pass (7/7)make build— compiles Rust → WASM, regenerates proto bindingsmake test-java— all JUnit 5 tests pass (44/44)CLOSES TICKET: CSHLD-783