| 422 | } |
| 423 | |
| 424 | static void DumpDbAll(FILE *f) { |
| 425 | string str = ""; |
| 426 | DBK_PREFIX_CACHE_LIST(DUMP_DB_ALL); |
| 427 | str += DbCacheToString(*pCdMan->pBlockIndexDb) + "\n"; |
| 428 | fwrite(str.data(), 1, str.size(), f); |
| 429 | } |
| 430 | |
| 431 | |
| 432 | Value dumpdb(const Array& params, bool fHelp) { |
no test coverage detected