Skip to content

Commit

Permalink
Fix toml: incomplete number
Browse files Browse the repository at this point in the history
```
$ go build -v ./cmd/planetmint-god/
$ rm -rf ~/.planetmint-go ~/.ignite
$ ignite chain init --check-dependencies --clear-cache
```

spf13/viper#1434 (comment)

Signed-off-by: Julian Strobl <[email protected]>
  • Loading branch information
jmastr committed Sep 12, 2023
1 parent 8b072d3 commit 2f2adb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2f2adb4

Please sign in to comment.