diff --git a/kraken/kraken_api.go b/kraken/kraken_api.go index 8133bc8..1d24526 100644 --- a/kraken/kraken_api.go +++ b/kraken/kraken_api.go @@ -76,8 +76,6 @@ func BuyBtc(_retry_do_not_use int) { ) if config.ExperimentalMakerFee { - log.Warn("Buying btc with experimental maker fee. This may not work as expected.") - priceRound, _ := strconv.ParseFloat(fmt.Sprintf("%.1f", fiatPrice), 64) args := map[string]interface{}{ // if set to true, no order will be submitted diff --git a/main.go b/main.go index b92ef18..869521b 100644 --- a/main.go +++ b/main.go @@ -21,6 +21,11 @@ func main() { log.Info(fmt.Sprintf("Kraken DCA 🐙 %s, commit %s, built at %s (%s [%s, %s])", version, commit, date, runtime.Version(), runtime.GOOS, runtime.GOARCH)) config.LoadConfiguration() + + if config.ExperimentalMakerFee { + log.Warn("Experimental maker fee is enabled. This feature is not recommended for production use.") + } + bot.NewBot().StartBot() select {}