refactor(traversal): make neighbors traversal explicitly required#1522
Merged
refactor(traversal): make neighbors traversal explicitly required#1522
Conversation
24dd1ff to
310a37c
Compare
4da0ff7 to
bc4eae1
Compare
bc4eae1 to
a4d7b2a
Compare
310a37c to
08e9e9b
Compare
a4d7b2a to
08c1585
Compare
08e9e9b to
74f869a
Compare
08c1585 to
f535fc5
Compare
|
| Branch | refactor/traversal-opt-in |
| Testbed | ubuntu-22.04 |
Click to view all benchmark results
| Benchmark | Latency | Benchmark Result minutes (m) (Result Δ%) | Lower Boundary minutes (m) (Limit %) | Upper Boundary minutes (m) (Limit %) |
|---|---|---|---|---|
| sync-v2 (up to 20000 blocks) | 📈 view plot 🚷 view threshold | 1.68 m(-2.87%)Baseline: 1.73 m | 1.55 m (92.66%) | 2.07 m (80.94%) |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1522 +/- ##
==========================================
+ Coverage 86.27% 86.28% +0.01%
==========================================
Files 438 438
Lines 33736 33762 +26
Branches 5267 5269 +2
==========================================
+ Hits 29107 29133 +26
Misses 3617 3617
Partials 1012 1012 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
40fe453 to
5c97684
Compare
msbrogli
previously approved these changes
Jan 6, 2026
5c97684 to
514bc95
Compare
514bc95 to
b11e22c
Compare
jansegre
previously approved these changes
Jan 7, 2026
b11e22c to
af6a43b
Compare
af6a43b to
f4e8b07
Compare
f4e8b07 to
f34c2de
Compare
jansegre
approved these changes
Jan 8, 2026
msbrogli
approved these changes
Jan 8, 2026
2 tasks
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.
Depends on #1519
Motivation
Current behavior for traversals is that it traverses all DAG neighbors, unless they're explicitly skipped. This is open for mistakes that allow traversals through the entire graph when we forget to skip. This PR changes this behavior by requiring explicitly addition of neighbors, too.
Acceptance Criteria
continue/returnwas implicitly adding neighbors, so now they're added explicitly.add_neighbors.Checklist
master, confirm this code is production-ready and can be included in future releases as soon as it gets merged