Skip to content

Commit 7590230

Browse files
committed
Add DKK, NOK
1 parent 47fb6a2 commit 7590230

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ By default, Tendermint waits 10 seconds for the transaction to be committed. But
44
And make sure that you include ukrw in minimum gas price in terrad.toml to let users pay the fee by ukrw.
55

66
## Changelog
7+
#### v0.0.5-alpha.10
8+
Add vote list for Proposal#83: `{DKK, NOK}`
9+
710
#### v0.0.5-alpha.9-b
811
Add vote list for Proposal#78: `{SEK}`(by <strong>@hanjukim</strong>)
912
To use the Systemd service, you need to enter the `name` and `password` in the **[Feeder]** part of `config.toml`

cmd/terra-oracle/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
)
3232

3333
var (
34-
version = "v0.0.5-alpha.9-b"
34+
version = "v0.0.5-alpha.10"
3535
logger = log.NewTMLogger(log.NewSyncWriter(os.Stdout))
3636
)
3737

oracle/tx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var (
3535
voteMode string
3636
salt, exchangeRatesStr = []string{"1234", ""}, []string{"", ""}
3737

38-
denoms = []string{"krw", "usd", "eur", "mnt", "cny", "jpy", "gbp", "inr", "cad", "chf", "hkd", "sgd", "aud", "sdr", "thb", "sek"}
38+
denoms = []string{"krw", "usd", "eur", "mnt", "cny", "jpy", "gbp", "inr", "cad", "chf", "hkd", "sgd", "aud", "sdr", "thb", "sek", "dkk", "nok"}
3939
)
4040

4141
func (os *OracleService) init() error {

price/stables.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type APILayerResponse struct {
2626
}
2727

2828
var (
29-
stables = []string{"XDR", "MNT", "EUR", "CNY", "JPY", "GBP", "INR", "CAD", "CHF", "HKD", "SGD", "AUD", "THB", "SEK"}
29+
stables = []string{"XDR", "MNT", "EUR", "CNY", "JPY", "GBP", "INR", "CAD", "CHF", "HKD", "SGD", "AUD", "THB", "SEK", "DKK", "NOK"}
3030
)
3131

3232
func (ps *PriceService) stablesToUsd(logger log.Logger) {

0 commit comments

Comments
 (0)