From 1c9d9bb89f5c098386a49f5a5329e8f19f103567 Mon Sep 17 00:00:00 2001 From: Regner Blok-Andersen Date: Thu, 27 Jul 2017 02:30:38 -0700 Subject: [PATCH] Changed flag for disabling the upload to `-d` --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 9608d54..ee3e659 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ func main() { config := utils.ClientConfig{} flag.StringVar(&config.IngestUrl, "i", "https://albion-market.com/api/v1/ingest/", "URL to send market data to.") - flag.BoolVar(&config.DisableUpload, "u", false, "If specified no attempts will be made to upload data to remote server.") + flag.BoolVar(&config.DisableUpload, "d", false, "If specified no attempts will be made to upload data to remote server.") flag.BoolVar(&config.SaveLocally, "s", false, "If specified all market orders will be saved locally.") flag.Parse()