mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "ethdb/pebble: use sync mode for pebble writes (#27615)"
This reverts commit e1e0b1c2e3.
This commit is contained in:
parent
8ed598df0b
commit
ad9830923b
1 changed files with 1 additions and 1 deletions
|
|
@ -279,7 +279,7 @@ func (d *Database) Put(key []byte, value []byte) error {
|
|||
if d.closed {
|
||||
return pebble.ErrClosed
|
||||
}
|
||||
return d.db.Set(key, value, pebble.Sync)
|
||||
return d.db.Set(key, value, pebble.NoSync)
|
||||
}
|
||||
|
||||
// Delete removes the key from the key-value store.
|
||||
|
|
|
|||
Loading…
Reference in a new issue