Skip to content

Commit

Permalink
fix: 修复USDT_RATE 交易所汇率异常问题
Browse files Browse the repository at this point in the history
  • Loading branch information
v03413 committed Dec 1, 2024
1 parent 97b9c5f commit 7260c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/rate/rate.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func SetOkxUsdtCnyRawRate(syntax string, rawRate float64) {
func parseFloatRate(syntax string, rawVal float64) float64 {
if syntax == "" {

return 0
return rawVal
}

if help.IsNumber(syntax) {
Expand Down
2 changes: 1 addition & 1 deletion app/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package app

// Version 版本号说明 1.0.0 代表主版本号.功能版本号.修订号
const Version = "1.13.31"
const Version = "1.13.32"

0 comments on commit 7260c60

Please sign in to comment.