| 1000 | void MaybeRebalanceCaches() EXCLUSIVE_LOCKS_REQUIRED(::cs_main); |
| 1001 | |
| 1002 | ~ChainstateManager() { |
| 1003 | LOCK(::cs_main); |
| 1004 | UnloadBlockIndex(/* mempool */ nullptr, *this); |
| 1005 | Reset(); |
| 1006 | } |
| 1007 | }; |
| 1008 | |
| 1009 | using FopenFn = std::function<FILE*(const fs::path&, const char*)>; |
nothing calls this directly
no test coverage detected