From 5b7b36a339ac28d708bca072dc5ec8189ceadac2 Mon Sep 17 00:00:00 2001 From: Maciej Kulawik Date: Wed, 15 May 2024 21:23:29 +0200 Subject: [PATCH] remove unnecessary new lines --- ethdb/pebble/pebble.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/ethdb/pebble/pebble.go b/ethdb/pebble/pebble.go index d7b96c3942..ab6bb1d72d 100644 --- a/ethdb/pebble/pebble.go +++ b/ethdb/pebble/pebble.go @@ -230,7 +230,6 @@ func New(file string, cache int, handles int, namespace string, readonly bool, e quitChan: make(chan chan error), writeOptions: &pebble.WriteOptions{Sync: !ephemeral}, } - opt := &pebble.Options{ // Pebble has a single combined cache area and the write // buffers are taken from this too. Assign all available @@ -276,7 +275,6 @@ func New(file string, cache int, handles int, namespace string, readonly bool, e WALMinSyncInterval: extraOptions.WALMinSyncInterval, TargetByteDeletionRate: extraOptions.TargetByteDeletionRate, } - // Disable seek compaction explicitly. Check https://github.com/ethereum/go-ethereum/pull/20130 // for more details. opt.Experimental.ReadSamplingMultiplier = -1