The coins cache (the CCoinsView* stack, CCoinsViewCache, and friends) is a correctness- and performance-critical part of validation, IBD, and assumeutxo.
Over time it has accumulated subtle invariants and legacy states (around cache entry flags, spent coin handling, and error catching), and we have been chipping away at it through focused refactors, bugfixes, tests, and performance work.
This issue tracks the related PRs to help reviewers see how they fit together. The overall aim is fewer error cases, cleaner cache layering, and parallel validation.
PRs needing review
Remove invalid cache states
- #33018 - remove unreachable FRESH-but-not-DIRTY state.
Simplify view hierarchy
- #34124 - make
CCoinsViewpurely virtual, add explicitCCoinsViewEmpty. - #34320 - replace
HaveCoin()withGetCoin(). - #34132 - inline error catcher into
CCoinsViewDB, simplify hot path.
Isolate block connection
- #34165 - add non-mutating
PeekCoin()to avoid polluting the main cache.
Flush behavior
- #33512 - track dirty entries so flush progress reflects actual writes.
Parallel coin fetching
- #31132 - async input prefetch during
ConnectBlock.
Other
- #33854 - fix assumevalid ignored during reindex (see #31494).
- #32317 - move UTXO access to
SpendBlock(kernel API, Utreexo, SwiftSync).
Recently merged
- #33680 - split
FORCE_SYNC/FORCE_FLUSH, keep cache warm forscantxoutset/gettxoutsetinfo/snapshots. - #34164 - add
Reset()and reusable view to discard failed connects cheaply. - #34207 - ensure
GetCoin()only returns unspent coins, align tests with production. - #33866 - remove always-true return from
BatchWrite. - #33657 - allow reading partial block data (useful for bindex).
- #33602 - reduce map lookups in
BatchWrite. - #33333 - warn when
-dbcacheexceeds RAM cap.
IRC context: https://bitcoin-irc.chaincode.com/bitcoin-core-dev/2026-01-08