From 11b31fb456ebb6a02224c06b41f1c0c851c03564 Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Wed, 7 Feb 2018 22:56:17 +0100 Subject: [PATCH] Update flags description --- blockbook.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blockbook.go b/blockbook.go index 02e79ff3..bc135177 100644 --- a/blockbook.go +++ b/blockbook.go @@ -52,13 +52,13 @@ var ( 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") + compactDBTriggerMB = flag.Int64("compact", -1, "invoke compaction when db size exceeds value in MB (default no compaction)") - httpServerBinding = flag.String("httpserver", "", "http server binding [address]:port, if missing no http server") + httpServerBinding = flag.String("httpserver", "", "http server binding [address]:port, (default no http server)") - socketIoBinding = flag.String("socketio", "", "socketio server binding [address]:port[/path], if missing no socketio server") + socketIoBinding = flag.String("socketio", "", "socketio server binding [address]:port[/path], (default no socket.io server)") - certFiles = flag.String("certfile", "", "to enable SSL specify path to certificate files without extension, expecting .crt and .key, default no SSL") + certFiles = flag.String("certfile", "", "to enable SSL specify path to certificate files without extension, expecting .crt and .key, (default no SSL)") zeroMQBinding = flag.String("zeromq", "", "binding to zeromq, if missing no zeromq connection") )