| 558 | } |
| 559 | |
| 560 | void BlockManager::FlushUndoFile(int block_file, bool finalize) |
| 561 | { |
| 562 | FlatFilePos undo_pos_old(block_file, m_blockfile_info[block_file].nUndoSize); |
| 563 | if (!UndoFileSeq().Flush(undo_pos_old, finalize)) { |
| 564 | AbortNode("Flushing undo file to disk failed. This is likely the result of an I/O error."); |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | void BlockManager::FlushBlockFile(bool fFinalize, bool finalize_undo) |
| 569 | { |
nothing calls this directly
no test coverage detected