From bb30724a7b0ba4cd7b2f57a7a2c964087f97f068 Mon Sep 17 00:00:00 2001 From: Maciej Kulawik Date: Wed, 15 May 2024 21:21:01 +0200 Subject: [PATCH] revert accidental comment change --- ethdb/pebble/pebble.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethdb/pebble/pebble.go b/ethdb/pebble/pebble.go index 42f2c2ca3d..d7b96c3942 100644 --- a/ethdb/pebble/pebble.go +++ b/ethdb/pebble/pebble.go @@ -245,7 +245,7 @@ func New(file string, cache int, handles int, namespace string, readonly bool, e // MemTableStopWritesThreshold places a hard limit on the size // of the existent MemTables(including the frozen one). // Note, this must be the number of tables not the size of all memtables - // according to https://github.com/cockroachdb/pebble/blob/master/extraOptions.go#L738-L742 + // according to https://github.com/cockroachdb/pebble/blob/master/options.go#L738-L742 // and to https://github.com/cockroachdb/pebble/blob/master/db.go#L1892-L1903. MemTableStopWritesThreshold: memTableLimit,