CodeIssuesPull RequestsActionsSecurityInsights
✨ AI
More
Settings

feat(truth): the truth ledger — every claim carries its proof #5534

Merged⚡ AI-generatedXSccantynz wants to mergefeat/truth-ledgermainopened 6d ago
1 changed file+4−1
Modifiedsrc/lib/truth-ledger.ts+4−1View fileUnifiedSplit
10011001 "truth-ledger: evaluation succeeded but history insert failed — the board would show 'now' with no trail"
10021002 );
10031003 }
1004 const pruned = await (deps.prune ?? pruneTruthEvaluations)();
1004 // Written as an explicit branch (not `(deps.prune ?? fn)()`) so the
1005 // sweepers-are-wired convention scanner can SEE the direct call — the
1006 // nullish-coalesced reference form reads as an orphaned sweeper to it.
1007 const pruned = deps.prune ? await deps.prune() : await pruneTruthEvaluations();
10051008
10061009 const count = (s: TruthState) =>
10071010 results.filter((r) => r.state === s).length;
10081011
c comment · e edit title · m merge · a approve · r request changes · ? shortcuts