mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
db_lmdb: fix missing mdb_dbi_close in migration
Fixed by hyc
This commit is contained in:
parent
31bdf7bd11
commit
85088d9f85
1 changed files with 1 additions and 0 deletions
|
@ -4748,6 +4748,7 @@ void BlockchainLMDB::migrate_2_3()
|
||||||
throw0(DB_ERROR(lmdb_error("Failed to delete old block_info table: ", result).c_str()));
|
throw0(DB_ERROR(lmdb_error("Failed to delete old block_info table: ", result).c_str()));
|
||||||
|
|
||||||
RENAME_DB("block_infn");
|
RENAME_DB("block_infn");
|
||||||
|
mdb_dbi_close(m_env, m_block_info);
|
||||||
|
|
||||||
lmdb_db_open(txn, "block_info", MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_block_info, "Failed to open db handle for block_infn");
|
lmdb_db_open(txn, "block_info", MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_block_info, "Failed to open db handle for block_infn");
|
||||||
mdb_set_dupsort(txn, m_block_info, compare_uint64);
|
mdb_set_dupsort(txn, m_block_info, compare_uint64);
|
||||||
|
|
Loading…
Reference in a new issue