9389a883f1
CSyncManager extracts the headers-first IBD planner from main.cpp into its own translation unit. main.cpp loses ~570 lines of file-scope state and helper functions; the headers handler, block-delivery latency tracking, stall-recovery, and per-peer Tick cadence now route through g_syncManager. MaybeMigrateLevelDbToRocksDb() is now reachable via -migratechaindb / -migratechaindbforce in init.cpp. Reads from <datadir>/txleveldb and writes byte-for-byte identical records into <datadir>/rocksdb via a new CRocksTxDB::WriteRawRecordForMigration() shim over WriteRaw. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
599 B
C++
15 lines
599 B
C++
// Copyright (c) 2026 The Triangles developers.
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#ifndef TRIANGLES_CHAINDB_MIGRATE_H
|
|
#define TRIANGLES_CHAINDB_MIGRATE_H
|
|
|
|
#include <string>
|
|
|
|
// Migrate legacy LevelDB chain state from <datadir>/txleveldb to RocksDB in
|
|
// <datadir>/rocksdb. The source is never modified. Returns true when migration
|
|
// succeeds or when there is nothing to migrate.
|
|
bool MaybeMigrateLevelDbToRocksDb(bool fForce, std::string& strError);
|
|
|
|
#endif // TRIANGLES_CHAINDB_MIGRATE_H
|