From 0df2bcd18cc8dde2dc6e50e25c5aaab55de19091 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Wed, 25 Jul 2018 03:30:12 -0700 Subject: [PATCH] htlcswitch/hodl/config_debug: only expose hodl flags in debug This commit places hodl command line flags behind the debug flag, so that they're only accessible during testing builds. --- htlcswitch/hodl/{config.go => config_debug.go} | 2 ++ 1 file changed, 2 insertions(+) rename htlcswitch/hodl/{config.go => config_debug.go} (99%) diff --git a/htlcswitch/hodl/config.go b/htlcswitch/hodl/config_debug.go similarity index 99% rename from htlcswitch/hodl/config.go rename to htlcswitch/hodl/config_debug.go index 22a65b527..957eb50d4 100644 --- a/htlcswitch/hodl/config.go +++ b/htlcswitch/hodl/config_debug.go @@ -1,3 +1,5 @@ +// +build debug + package hodl // Config is a struct enumerating the possible command line flags that are used