From a7817ed9fba506adeaeb890d9f622d78bc489d9e Mon Sep 17 00:00:00 2001 From: Rafael Tenfen Date: Fri, 24 Jun 2022 17:45:08 -0300 Subject: [PATCH] feat: update stablecoin from UST to DAI (#308) - Update to get quotes from DAI instead of UST '-' --- orchestrator/oracle/oracle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestrator/oracle/oracle.go b/orchestrator/oracle/oracle.go index 4c9c2827..5e1b3a64 100644 --- a/orchestrator/oracle/oracle.go +++ b/orchestrator/oracle/oracle.go @@ -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 {