Filter out Beancount summarization entries from Recent Transactions #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The "Recent Transactions" card in the Castle UI is showing Beancount summarization/opening balance entries that shouldn't appear to users.
Examples from UI
The following entries are showing in Recent Transactions (all dated 12/17/2025, 0 sats):
These are internal Beancount entries created during ledger summarization/closing, not actual user transactions.
Expected Behavior
Recent Transactions should only show actual transactions:
Suggested Fix
Filter out entries in the journal query that match summarization patterns:
Sflag (Beancount's summarize flag)^castle-or^exp-/^rcv-links (real Castle entries have these)Affected Code
Likely in
views_api.pywhere journal entries are fetched, or infava_client.pyquery methods.