Skip to content

Commit

Permalink
1672 clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
kladkogex authored Sep 27, 2023
1 parent 6f0b47b commit 451db1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libdevcore/LevelDB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ void LevelDB::commit( std::unique_ptr< WriteBatchFace > _batch ) {
DatabaseError() << errinfo_comment( "Invalid batch type passed to LevelDB::commit" ) );
}
auto const status = m_db->Write( m_writeOptions, &batchPtr->writeBatch() );
// Commit happened. This means the keys actually got deleted in LevelDB. Increment key deletes stats
// and set g_keysToBeDeletedStats to zero
// Commit happened. This means the keys actually got deleted in LevelDB. Increment key deletes
// stats and set g_keysToBeDeletedStats to zero
g_keyDeletesStats += g_keysToBeDeletedStats;
g_keysToBeDeletedStats = 0;
checkStatus( status );
Expand Down

0 comments on commit 451db1d

Please sign in to comment.