Skip to content

Commit

Permalink
use false as set_sync's argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jackzhhuang committed Jan 12, 2025
1 parent cb7d6a4 commit e3c6150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flexidag/src/consensusdb/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl FlexiDagStorage {
}

pub fn write_batch(&self, batch: WriteBatch) -> Result<(), StoreError> {
self.db.raw_write_batch_sync(batch).map_err(|e| {
self.db.raw_write_batch(batch).map_err(|e| {
StoreError::DBIoError(format!(
"failed to write in batch for dag data, error: {:?}",
e.to_string()
Expand Down

0 comments on commit e3c6150

Please sign in to comment.