| 595 | { |
| 596 | public: |
| 597 | SingleEntryCacheTest(CAmount base_value, CAmount cache_value, char cache_flags) |
| 598 | { |
| 599 | WriteCoinsViewEntry(base, base_value, base_value == ABSENT ? NO_ENTRY : DIRTY); |
| 600 | cache.usage() += InsertCoinsMapEntry(cache.map(), cache_value, cache_flags); |
| 601 | } |
| 602 | |
| 603 | CCoinsView root; |
| 604 | CCoinsViewCacheTest base{&root}; |
nothing calls this directly
no test coverage detected