Skip to content

Commit

Permalink
fix(v5_market): parse response for get kline
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokisan committed Apr 22, 2024
1 parent 5f697f6 commit 6d6a869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v5_market_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (l *V5GetKlineList) UnmarshalJSON(data []byte) error {
Low: d[3].(string),
Close: d[4].(string),
Volume: d[5].(string),
Turnover: d[5].(string),
Turnover: d[6].(string),
})
}
return nil
Expand Down

0 comments on commit 6d6a869

Please sign in to comment.