mirror of
https://github.com/oxen-io/oxen-core.git
synced 2023-12-14 02:22:56 +01:00
Merge pull request #4129
ee31383
db_lmdb: don't sync a read only DB (moneromooo-monero)
This commit is contained in:
commit
0dddfeacc9
1 changed files with 3 additions and 0 deletions
|
@ -1413,6 +1413,9 @@ void BlockchainLMDB::sync()
|
|||
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
||||
check_open();
|
||||
|
||||
if (is_read_only())
|
||||
return;
|
||||
|
||||
// Does nothing unless LMDB environment was opened with MDB_NOSYNC or in part
|
||||
// MDB_NOMETASYNC. Force flush to be synchronous.
|
||||
if (auto result = mdb_env_sync(m_env, true))
|
||||
|
|
Loading…
Reference in a new issue