From 32d99e56ebc2a99c56350028705b181b7452400f Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Mon, 26 Feb 2018 16:44:25 +0100 Subject: [PATCH] Remove obsolete compact option --- blockbook.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/blockbook.go b/blockbook.go index c209e208..63a9fb44 100644 --- a/blockbook.go +++ b/blockbook.go @@ -48,11 +48,10 @@ var ( repair = flag.Bool("repair", false, "repair the database") prof = flag.Bool("prof", false, "profile program execution") - syncChunk = flag.Int("chunk", 100, "block chunk size for processing") - syncWorkers = flag.Int("workers", 8, "number of workers to process blocks") - dryRun = flag.Bool("dryrun", false, "do not index blocks, only download") - parse = flag.Bool("parse", false, "use in-process block parsing") - compactDBTriggerMB = flag.Int64("compact", -1, "invoke compaction when db size exceeds value in MB (default no compaction)") + syncChunk = flag.Int("chunk", 100, "block chunk size for processing") + syncWorkers = flag.Int("workers", 8, "number of workers to process blocks") + dryRun = flag.Bool("dryrun", false, "do not index blocks, only download") + parse = flag.Bool("parse", false, "use in-process block parsing") httpServerBinding = flag.String("httpserver", "", "http server binding [address]:port, (default no http server)")