mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00
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 <jmastr@mailbox.org>
This commit is contained in:
parent
8b072d3186
commit
2f2adb4543
@ -14,9 +14,9 @@ const DefaultConfigTemplate = `
|
|||||||
osc-service-port = {{ .PlmntConfig.OSCServicePort }}
|
osc-service-port = {{ .PlmntConfig.OSCServicePort }}
|
||||||
watchmen-endpoint = "{{ .PlmntConfig.WatchmenEndpoint }}"
|
watchmen-endpoint = "{{ .PlmntConfig.WatchmenEndpoint }}"
|
||||||
watchmen-port = {{ .PlmntConfig.WatchmenPort }}
|
watchmen-port = {{ .PlmntConfig.WatchmenPort }}
|
||||||
token-denom = {{ .PlmntConfig.TokenDenom }}
|
token-denom = "{{ .PlmntConfig.TokenDenom }}"
|
||||||
stake-denom = {{ .PlmntConfig.StakeDenom }}
|
stake-denom = "{{ .PlmntConfig.StakeDenom }}"
|
||||||
fee-denom = {{ .PlmntConfig.FeeDenom }}
|
fee-denom = "{{ .PlmntConfig.FeeDenom }}"
|
||||||
`
|
`
|
||||||
|
|
||||||
// Config defines Planetmint's top level configuration
|
// Config defines Planetmint's top level configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user