From 10e0f151467beffd205f94f767a4932b3576734c Mon Sep 17 00:00:00 2001 From: kiel barry Date: Mon, 14 May 2018 09:45:09 -0700 Subject: [PATCH] ethdb: updates to pr --- ethdb/interface.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethdb/interface.go b/ethdb/interface.go index af75678f41..c7e7c3ad5f 100644 --- a/ethdb/interface.go +++ b/ethdb/interface.go @@ -16,8 +16,7 @@ package ethdb -// IdealBatchSize is the amount of data vode using batches should try to add to the batch. -// The value was determined empirically. +// IdealBatchSize is the amount of data batches should accumulate before flushing. const IdealBatchSize = 100 * 1024 // Putter wraps the database write operation supported by both batches and regular databases.