Skip to content

Commit

Permalink
feat: update stablecoin from UST to DAI (#308)
Browse files Browse the repository at this point in the history
- Update to get quotes from DAI instead of UST '-'
  • Loading branch information
RafilxTenfen authored Jun 24, 2022
1 parent 1f2f597 commit a7817ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestrator/oracle/oracle.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func (o *Oracle) tick() error {
// GetStablecoinsCurrencyPair return the currency pair of that symbol quoted by some
// stablecoins.
func GetStablecoinsCurrencyPair(baseSymbol string) []umeedpftypes.CurrencyPair {
quotes := []string{"USD", "USDT", "UST"}
quotes := []string{"USD", "USDT", "DAI"}
currencyPairs := make([]umeedpftypes.CurrencyPair, len(quotes))

for i, quote := range quotes {
Expand Down

0 comments on commit a7817ed

Please sign in to comment.