Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhar-petukhov committed Nov 22, 2023
1 parent 33f111e commit 2e2863c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pkg/rates/sources.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ type storage interface {
GetJettonMasterMetadata(ctx context.Context, master tongo.AccountID) (tep64.Metadata, error)
}

var jUSDTJetton = ton.MustParseAccountID("EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA")

func (m *Mock) GetCurrentRates() (map[string]float64, error) {
rates := make(map[string]float64)

Expand Down Expand Up @@ -158,9 +156,6 @@ func getStonFiPool(tonPrice float64) map[ton.AccountID]float64 {
continue
}
if jettonPrice, err := strconv.ParseFloat(*pool.DexUsdPrice, 64); err == nil {
if account.ID == jUSDTJetton {
log.Infof("[CHECK_STONFI_JETTON] USD_PRICE: %v, CONVERTED_PRICE: %v, RESULT: %v", *pool.DexUsdPrice, jettonPrice, jettonPrice/tonPrice)
}
mapOfPool[account.ID] = jettonPrice / tonPrice
}
}
Expand Down

0 comments on commit 2e2863c

Please sign in to comment.