validator: forward-loop redundancies (epoch-gate registration, throttle prune, in-memory busy, cache source verify)#256
Merged
Conversation
a1ded38 to
7363690
Compare
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.
What
Four independent forward-loop optimizations, each a single commit. Built on top of #255.
Per-step impact
is_hotkey_registeredprune_old_eventswalkget_miner_has_active_swapper pending rowCorrectness notes
Commit 3 uses the in-memory
event_watcher.open_swap_countas a fast path but still verifies with the contract before dropping a pending row. The watcher can lag the chain after async_tofailure; dropping apending_confirmsrow on a stale "busy" report would burn the user's reserved TAO. The contract verify is only paid when the watcher reports busy (rare in steady state).Commit 4's
source_verified_idsset grows by one entry per FULFILLED swap. No eviction — the source tx is final once confirmed, so the cache is correct for the lifetime of the validator process. Memory is bounded by total swap count (negligible at any realistic scale).Held back from this PR
event_watcher.sync_to) — biggest single latency win for high-block-lag steps; deferred per "don't want to break anything."refresh_miner_ratesthrottle) — needs measurement against scoring accuracy.Test plan
pytest tests/— 387 passedruff check+ruff format --check— clean