Skip to content

fix(ledger): stop one unreconcilable row from hiding every row after it - #9857

Merged
JSONbored merged 1 commit into
mainfrom
fix/ledger-verify-unmasks-later-rows
Jul 29, 2026
Merged

fix(ledger): stop one unreconcilable row from hiding every row after it#9857
JSONbored merged 1 commit into
mainfrom
fix/ledger-verify-unmasks-later-rows

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Refs #9850

The bug is not what the issue first said

I originally guessed canonicalization drift. Diagnosed against the live database, it is not:

seq 4 | ledger 5987e8d984cd | record's own 5987e8d984cd | recomputed 5987e8d984cd | agree
seq 5 | ledger e66db5eb697d | record's own e3b1d83a45fa | recomputed e3b1d83a45fa | DISAGREE

The record is self-consistent and round-trips exactly; the chain row committed a digest for content the record no longer holds. That is #9123's "compounding bug" — the record-overwriting UPDATE that the :rev<N> revision scheme replaced.

The write path is already fixed. The damage is historical and bounded:

divergent rows 83, all in seq 5–257 (07-26 13:44 → 07-27 13:16)
rows since (seq > 600) 1,061, zero divergent

So what actually needed fixing

verifyDecisionLedger returned at the first content mismatch. With permanent historical damage at seq 5, that meant:

  • checked: 4 out of 1,654 rows
  • /v1/public/decision-ledger/verify publishes ok: false forever
  • and rows 6–1654 are never examined at all

The third is the serious one. Real tampering at seq 900 was invisible behind an unfixable row at seq 5 — a denial-of-verification on the one endpoint whose whole purpose is that a skeptic can trust it.

The change

Content mismatches accumulate; the scan continues. This is safe because the chain checks already passed for that row — sequence, predecessor and row_hash all reconciled before the content check runs, so prevHash for the next row is sound. A content mismatch is a statement about one row's preimage.

A structural break is not: a sequence gap or predecessor mismatch makes everything after it unverifiable. Those still return immediately — and now actually get reached.

The verdict is not softened. Any mismatch is still ok: false, and the first is still reported as break. What changes is that the scan finishes and reports contentMismatches, so "one bad row" and "eighty-three bad rows" stop looking identical.

Tests

Five cases, and I verified all of them fail against the old abort-on-first behaviour (3 fail outright; the other two pin invariants that must hold either way):

  • keeps verifying past a mismatch (checked covers the window)
  • a structural break after a content mismatch is found — previously unreachable
  • every mismatch counted, not just the first
  • the verdict is still ok: false
  • contentMismatches: 0 on a clean chain, so the field is a fact rather than only an error signal

Validation

tsc --noEmit clean; 91 tests across the decision-record, public-ledger-route and anchor-scheduler suites. Every branch and statement I touched in verifyDecisionLedger is covered — checked against the coverage JSON restricted to the function's line range, not the whole-file figure. OpenAPI description updated and apps/loopover-ui/public/openapi.json regenerated in the same commit.

Left open deliberately

This does not reconcile the 83 historical rows — their preimages are genuinely gone, and rewriting them would be exactly the tampering the ledger exists to detect. #9850 stays open for that decision: the honest options are to leave ok: false standing with the count visible, or to publish an explicit, auditable boundary the way prunedRecords already does for retention-pruned rows.

verifyDecisionLedger returned at the FIRST content_mismatch, so a single row
whose preimage no longer matches became a denial-of-verification for the whole
chain behind it.

Found on a live instance: 83 rows (seq 5-257, 2026-07-26 to 07-27) left by the
record-overwriting UPDATE that #9123 replaced with the revision scheme. Zero
divergence in the 1,061 rows since -- the write path is fixed and the damage is
historical -- but verification stopped at seq 5 and never examined the remaining
1,649 rows. Real tampering at seq 900 would have been invisible behind permanent
damage at seq 5, on the one endpoint whose entire purpose is that a skeptic can
trust it.

Content mismatches now accumulate and the scan continues. That is safe precisely
because the chain checks already passed for the row: sequence, predecessor and
row_hash all reconciled, so prevHash for the next row is sound. A content
mismatch is a statement about one row's preimage. A STRUCTURAL break is not --
a sequence gap or predecessor mismatch makes everything after it unverifiable --
so those still return immediately, and now actually get reached.

The verdict is NOT softened: any mismatch is still ok:false, and the first is
still reported as . What changes is that the scan finishes and reports
contentMismatches, so "one bad row" and "eighty-three bad rows" stop looking
identical, and a later structural break is no longer unreachable.

Refs #9850
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 29, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
loopover-ui 9382d79 Commit Preview URL

Branch Preview URL
Jul 29 2026, 02:28 PM

@loopover-orb

loopover-orb Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

Warning

⏸️ LoopOver review result - manual review recommended

Review updated: 2026-07-29 14:54:52 UTC

4 files · 1 AI reviewer · 2 blockers · CI green · clean

⏸️ Suggested Action - Manual Review

Review summary
This changes verifyDecisionLedger to accumulate content_mismatch findings across the whole scan instead of aborting on the first one, while still returning ok:false and reporting the first mismatch as `break` — structural breaks (sequence_gap, predecessor_mismatch, row_hash_mismatch, missing_record) still abort immediately since those genuinely invalidate everything downstream. The reasoning that content mismatches are safe to continue past (chain checks already passed, so prevHash for the next row is sound) is correct and the new contentMismatches field is threaded through every return path consistently, including the previously-missed early returns. The added tests exercise the real regression (content mismatch masking a later structural break) rather than a fabricated scenario, and the OpenAPI/spec.ts doc updates match the new field.

Nits — 5 non-blocking
  • The PR body says it fixes an issue traced to orb(trust): the decision record is never published — contributors get a 12-char prefix of a document no endpoint returns, and 51 preimages are already destroyed #9123's compounding bug, but the historical data (83 divergent rows already existing) means no migration/backfill is proposed for those rows — worth confirming that's intentionally out of scope.
  • src/review/decision-record.ts: `firstContentMismatch ??= {...}` combined with `contentMismatches += 1` is fine, but the comment block above it is quite long for a single boolean-safe accumulation; could be tightened.
  • test/unit/decision-record.test.ts: the corruptRecordAt helper directly manipulates decision_records via raw SQL, which is appropriate for this test but relies on internal column names (record_json) that could drift silently if the schema changes.
  • Consider whether the /v1/public/decision-ledger/verify consumers (dashboards, alerting) need a changelog note since ok:false semantics are unchanged but the checked count and reachability of later breaks now differ.
  • src/openapi/spec.ts:1885 — the description string is very long inline; consider extracting to a constant/template for readability given the file's already-flagged size.

Concerns raised — review before merging

  • No linked issue detected: No closing reference or linked issue number was found in the PR metadata/body. — If this PR is intended to solve an issue, link it explicitly in the PR body.
  • Maintainer requires a linked issue: This repo's maintainer focus manifest requires every PR to reference a tracked issue. — Link the relevant issue (for example Closes #123) before opening the PR.
📋 Copy for AI agents — paste into your coding agent
Fix the following blocker(s) from this PR review:

1. No linked issue detected: No closing reference or linked issue number was found in the PR metadata/body. — If this PR is intended to solve an issue, link it explicitly in the PR body.

2. Maintainer requires a linked issue: This repo's maintainer focus manifest requires every PR to reference a tracked issue. — Link the relevant issue (for example `Closes #123`) before opening the PR.

Decision drivers

  • ❌ Code review — 2 blockers (1 reviewer)
  • ❌ Gate result — Blocking (Repo-configured hard blocker found.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ⚠️ Missing No linked issue or no-issue rationale found.
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ✅ 20/20 Low review scope from cached public metadata (no linked issue context).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 14 registered-repo PR(s), 13 merged, 345 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 14 PR(s), 345 issue(s).
Improvement ✅ Minor risk: clean · value: minor
Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is registered but has no active allocation in the current snapshot.
  • Public profile languages: Python, TypeScript, Ruby, Go, MDX, Shell, Solidity, JavaScript
  • Official Gittensor activity: 14 PR(s), 345 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
  • Then work through the remaining 4 steps in the Signals table above.
Signal definitions
  • Related work = same linked issue, overlapping active PRs, or title/path similarity.
  • Change scope = cached public metadata such as size labels, draft state, and review-burden hints.
  • Validation posture = whether the PR provides enough public validation/test evidence for maintainer review.
  • Contributor workload = public contributor activity and cleanup pressure, not a repo-wide quality failure.
  • Contributor context = public GitHub/Gittensor identity context; non-Gittensor status is not a blocker.
🧪 Chat with LoopOver

Ask LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.

  • @loopover ask &lt;question&gt; answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat &lt;question&gt; answers in natural prose from cached decision-pack facts via local inference (maintainer/collaborator; read-only).
  • A plain-language @loopover mention with a real question is routed to the closest matching read-only command automatically — no exact syntax required.

Full command reference: https://loopover.ai/docs/loopover-commands

🧪 Experimental — new and may change.

Decision record
  • action: hold · clause: missing_linked_issue
  • config: ac26c82719d9371ae82cd470655ec2ed1226bb286353e86aa834ad66319cbc81 · pack: oss-anti-slop · ci: passed
  • record: 7971b67c42016cb12221d304b1019c73e08e8be6fbe2497c1ee4624c29ea3b02 (schema v5, head 9382d79)
Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/ desktop before /
before /
after /
after /
/ mobile before / (mobile)
before / (mobile)
after / (mobile)
after / (mobile)

Click any thumbnail to open the full-size screenshot. Before = production · After = this PR's preview deploy.

Scroll preview
Route Before (production) After (this PR's preview)
/ before / (scroll)
before / (scroll)
after / (scroll)
after / (scroll)

A short scroll-through clip (desktop) — click either thumbnail to open the full animation. Evidence for scroll-linked behavior a single screenshot can't show.

🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed


💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →.

Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.

  • Re-run LoopOver review

@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Bundle Report

Changes will increase total bundle size by 760 bytes (0.01%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.9MB 760 bytes (0.01%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-CLgxfJcB.js (New) 2.16MB 2.16MB 100.0% 🚀
assets/tanstack-vendor-BER3Ek-U.js (New) 929.97kB 929.97kB 100.0% 🚀
openapi.json 379 bytes 748.34kB 0.05%
assets/docs.fumadocs-spike-api-reference-_rV_ZNFm.js (New) 443.45kB 443.45kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-DOPNMZ9c.js (New) 201.7kB 201.7kB 100.0% 🚀
assets/modal-aw-Y60pK.js (New) 184.5kB 184.5kB 100.0% 🚀
assets/client-f_Gqef6b.js (New) 151.47kB 151.47kB 100.0% 🚀
assets/maintainer-panel-CbRWqPrs.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/routes-4lhCzq0c.js (New) 35.96kB 35.96kB 100.0% 🚀
assets/owner-panel-Br11a8nM.js (New) 27.99kB 27.99kB 100.0% 🚀
assets/app-Dhi3VvmS.js (New) 25.78kB 25.78kB 100.0% 🚀
assets/ui-vendor-EDoezt-A.js (New) 24.57kB 24.57kB 100.0% 🚀
assets/miner-panel-OapBCp0i.js (New) 20.24kB 20.24kB 100.0% 🚀
assets/app.runs-Cry69PA0.js (New) 20.22kB 20.22kB 100.0% 🚀
assets/api._op-D-96QBeP.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-BoN-n5aG.js (New) 16.6kB 16.6kB 100.0% 🚀
assets/docs._slug-CBOT7Dgu.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/playground-panel-DrZzr_4W.js (New) 14.42kB 14.42kB 100.0% 🚀
assets/fairness-DX_cHUCE.js (New) 13.98kB 13.98kB 100.0% 🚀
assets/app.audit-nt8EDEWU.js (New) 10.08kB 10.08kB 100.0% 🚀
assets/app.config-generator-Dnhb0tOZ.js (New) 10.06kB 10.06kB 100.0% 🚀
assets/maintainers-BFz1S4aE.js (New) 8.06kB 8.06kB 100.0% 🚀
assets/miners-T1Y24KH_.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-BxDeDqZt.js (New) 7.74kB 7.74kB 100.0% 🚀
assets/commands-panel-DkCeshNn.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-DiHmm93l.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-TP40In1Y.js (New) 6.15kB 6.15kB 100.0% 🚀
assets/repos._owner._repo.quality-B4LiVQtL.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-D9m2kguE.js (New) 6.01kB 6.01kB 100.0% 🚀
assets/docs.index-B3yYidnI.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-D8TDJnE4.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-D-gE2uir.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-DVHl2hfS.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-pJBAw-Y6.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-BXMGJCu8.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-DAXzVtqy.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tabs-DhEnnvXq.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-28h93WYI.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-CudIgaG5.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-DFkAGJvJ.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-CPoNsg9N.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/app.owner-Jp6K1mAt.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-Cgo1sKeQ.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-Dpie6z-x.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-09Elvpi5.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-BDyju4tv.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-2Z_qycXC.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-B2iYchFZ.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-Bd_Omqc7.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-jxQLEaVO.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-JYDuA8zX.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-B1ubBrJI.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-B9COjqYY.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/list-checks-BtWCkoxO.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/compass-DFFCDHYB.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-Di1QVZKL.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/message-square-DLl0ZzKr.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-D_BRkFBD.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-CXx5sIbF.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-BwNSPHIf.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-DCfHLr0h.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-CSB-O74V.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/add-scalar-classes-BSPnTYjU.js (Deleted) -2.16MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-BSfui9Ry.js (Deleted) -929.59kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-PEOA5eSX.js (Deleted) -443.45kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-DSb-a9zj.js (Deleted) -201.7kB 0 bytes -100.0% 🗑️
assets/modal-B0PABJnF.js (Deleted) -184.5kB 0 bytes -100.0% 🗑️
assets/client-Vn4u2jya.js (Deleted) -151.47kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-B_OywHlT.js (Deleted) -78.99kB 0 bytes -100.0% 🗑️
assets/routes-BJ5dZvL6.js (Deleted) -35.96kB 0 bytes -100.0% 🗑️
assets/owner-panel-XwBRI6EE.js (Deleted) -27.99kB 0 bytes -100.0% 🗑️
assets/app-oW9SoyCK.js (Deleted) -25.78kB 0 bytes -100.0% 🗑️
assets/ui-vendor-DJr9t1ia.js (Deleted) -24.57kB 0 bytes -100.0% 🗑️
assets/miner-panel-D28oBVsG.js (Deleted) -20.24kB 0 bytes -100.0% 🗑️
assets/app.runs-BBUw0Jy7.js (Deleted) -20.22kB 0 bytes -100.0% 🗑️
assets/api._op-nH36pdBa.js (Deleted) -17.57kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-DAewGL-F.js (Deleted) -16.6kB 0 bytes -100.0% 🗑️
assets/docs._slug-EnD-dtAp.js (Deleted) -15.52kB 0 bytes -100.0% 🗑️
assets/playground-panel-ByASbOi5.js (Deleted) -14.42kB 0 bytes -100.0% 🗑️
assets/fairness-BxxDu4ne.js (Deleted) -13.98kB 0 bytes -100.0% 🗑️
assets/app.audit-BZX-F7R9.js (Deleted) -10.08kB 0 bytes -100.0% 🗑️
assets/app.config-generator-D2QtU-1j.js (Deleted) -10.06kB 0 bytes -100.0% 🗑️
assets/maintainers-1kdw3a8z.js (Deleted) -8.06kB 0 bytes -100.0% 🗑️
assets/miners-B8Y4qB1N.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/agents-DuRIBvje.js (Deleted) -7.74kB 0 bytes -100.0% 🗑️
assets/commands-panel-DHKrkVHD.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-CV_0wYQJ.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/digest-panel-CozGcaup.js (Deleted) -6.15kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-ClOqNqn9.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-B47PLe_j.js (Deleted) -6.01kB 0 bytes -100.0% 🗑️
assets/docs.index-BUu0bCHw.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/api.index-DPPFg3Fg.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/docs-BETvgXpZ.js (Deleted) -2.7kB 0 bytes -100.0% 🗑️
assets/api-DiOaQ19w.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-C3Fhc46Z.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-Bv1338s_.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-CZnNaiHu.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tabs-CYJ3N9FE.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-vet5si0G.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-Cmu1ocjr.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-2oHsLwk6.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-BwNHuVKL.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/app.owner-CSfsqlov.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-BtOP0jPS.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-BzYn0Xwd.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-BPBk3bod.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-D7TQmknz.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-DFWYwQHn.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-FW94CuGr.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-Bf47khQa.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-DaJULD9c.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-BPDBn-jV.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-DGDZI0bb.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-B4fNJL5x.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/list-checks-D4E68ExU.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/compass-BvyqHKPd.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-CANcsOs3.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/message-square-DR1pJk_4.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-hYiPwyK8.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-Cgmrz7Hb.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-C4XH4baf.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check--NMvNaEc.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-gpTP6R1a.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️

@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 90.77%. Comparing base (31e0d4e) to head (9382d79).
⚠️ Report is 2 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #9857      +/-   ##
==========================================
- Coverage   91.65%   90.77%   -0.88%     
==========================================
  Files         916      916              
  Lines      112763   112769       +6     
  Branches    27087    27088       +1     
==========================================
- Hits       103348   102363     -985     
- Misses       8126     9315    +1189     
+ Partials     1289     1091     -198     
Flag Coverage Δ
backend 94.10% <100.00%> (-1.57%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/openapi/spec.ts 99.27% <ø> (ø)
src/review/decision-record.ts 100.00% <100.00%> (ø)

... and 3 files with indirect coverage changes

@loopover-orb loopover-orb Bot added the manual-review Gittensor contributor context label Jul 29, 2026
@JSONbored
JSONbored merged commit 592dc59 into main Jul 29, 2026
12 checks passed
@JSONbored
JSONbored deleted the fix/ledger-verify-unmasks-later-rows branch July 29, 2026 15:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

manual-review Gittensor contributor context

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant