Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix handle error when get price mtm #107

Merged
merged 4 commits into from
Dec 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions v2/pkg/price_filler/price_filler.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"errors"
"fmt"
"net"
"strings"
"sync"
"time"
Expand Down Expand Up @@ -171,16 +172,20 @@ func (p *PriceFiller) runBackFillTradelogPriceRoutine() {
func (p *PriceFiller) fullFillTradeLog(tradeLog storageTypes.TradeLog) (storageTypes.TradeLog, error) {
makerPrice, makerUsdAmount, err := p.getPriceAndAmountUsd(strings.ToLower(tradeLog.MakerToken),
tradeLog.MakerTokenAmount, int64(tradeLog.Timestamp))
if err != nil && strings.Contains(err.Error(), "connection refuse") {
p.l.Errorw("Failed to getPriceAndAmountUsd for maker", "err", err)
return tradeLog, err
if err != nil {
if isConnectionRefusedError(err) {
p.l.Errorw("Failed to getPriceAndAmountUsd for maker", "err", err)
return tradeLog, err
}
}

takerPrice, takerUsdAmount, err := p.getPriceAndAmountUsd(strings.ToLower(tradeLog.TakerToken),
tradeLog.TakerTokenAmount, int64(tradeLog.Timestamp))
if err != nil && strings.Contains(err.Error(), "connection refuse") {
p.l.Errorw("Failed to getPriceAndAmountUsd for taker", "err", err)
return tradeLog, err
if err != nil {
if isConnectionRefusedError(err) {
iostream1308 marked this conversation as resolved.
Show resolved Hide resolved
p.l.Errorw("Failed to getPriceAndAmountUsd for taker", "err", err)
return tradeLog, err
}
}

tradeLog.MakerTokenPrice = &makerPrice
Expand Down Expand Up @@ -222,9 +227,11 @@ func (p *PriceFiller) getSumAmountUsd(address, rawAmt []string, at int64) (float
var sumAmount, price float64
for i := range address {
pr, usdAmount, err := p.getPriceAndAmountUsd(address[i], rawAmt[i], at)
if err != nil && strings.Contains(err.Error(), "connection refuse") {
p.l.Errorw("Failed to getPriceAndAmountUsd for address", "err", err)
return 0, 0, err
if err != nil {
if isConnectionRefusedError(err) {
p.l.Errorw("Failed to getPriceAndAmountUsd for address", "err", err)
return 0, 0, err
}
}
sumAmount += usdAmount
price = pr
Expand All @@ -243,9 +250,6 @@ func (p *PriceFiller) getPriceAndAmountUsd(address, rawAmt string, at int64) (fl
if coin.Decimals == 0 {
decimals, symbol, err := p.getDecimalsAndSymbol(address)
if err != nil {
if errors.Is(err, ErrWeirdTokenCatalogResp) {
return 0, 0, nil
}
return 0, 0, fmt.Errorf("failed to get decimals: %w", err)
}
coin.Decimals = decimals
Expand Down Expand Up @@ -330,3 +334,13 @@ func (p *PriceFiller) insertTokens() error {
}
return nil
}

func isConnectionRefusedError(err error) bool {
var netErr *net.OpError
iostream1308 marked this conversation as resolved.
Show resolved Hide resolved
if errors.As(err, &netErr) {
if strings.Contains(netErr.Err.Error(), "connection refused") {
return true
}
}
return false
}
Loading