From 2f2adb4543f4759545f08ce7c2920231d831355e Mon Sep 17 00:00:00 2001 From: Julian Strobl Date: Tue, 12 Sep 2023 14:36:14 +0200 Subject: [PATCH] Fix toml: incomplete number ``` $ go build -v ./cmd/planetmint-god/ $ rm -rf ~/.planetmint-go ~/.ignite $ ignite chain init --check-dependencies --clear-cache ``` https://github.com/spf13/viper/issues/1434#issuecomment-1259326026 Signed-off-by: Julian Strobl --- config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.go b/config/config.go index c30b4fe..0812c46 100644 --- a/config/config.go +++ b/config/config.go @@ -14,9 +14,9 @@ const DefaultConfigTemplate = ` osc-service-port = {{ .PlmntConfig.OSCServicePort }} watchmen-endpoint = "{{ .PlmntConfig.WatchmenEndpoint }}" watchmen-port = {{ .PlmntConfig.WatchmenPort }} -token-denom = {{ .PlmntConfig.TokenDenom }} -stake-denom = {{ .PlmntConfig.StakeDenom }} -fee-denom = {{ .PlmntConfig.FeeDenom }} +token-denom = "{{ .PlmntConfig.TokenDenom }}" +stake-denom = "{{ .PlmntConfig.StakeDenom }}" +fee-denom = "{{ .PlmntConfig.FeeDenom }}" ` // Config defines Planetmint's top level configuration