diff --git a/ra2/context_engine.py b/ra2/context_engine.py index 6e0404f7fea..4ecf02b312c 100644 --- a/ra2/context_engine.py +++ b/ra2/context_engine.py @@ -115,7 +115,7 @@ def _run_compression(messages: list, stream_id: str) -> None: if latest: updates["latest"] = latest if blockers: - updates["blockers"] = blockers[-token_gate.MAX_TOKENS:] # bounded + updates["blockers"] = blockers[-ledger.MAX_BLOCKERS:] # bounded if open_questions: updates["open"] = open_questions[-10:]