From a29ce7075a39dc201c3b5311afab2f985b563a24 Mon Sep 17 00:00:00 2001 From: Sanket Bijawe Date: Sat, 6 Sep 2025 23:00:08 +0530 Subject: [PATCH] Fix ticker 24hr struct for binance response --- market.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/market.go b/market.go index 322ba520..520029c4 100644 --- a/market.go +++ b/market.go @@ -790,8 +790,8 @@ type Ticker24hrResponse struct { QuoteVolume string `json:"quoteVolume"` OpenTime uint64 `json:"openTime"` CloseTime uint64 `json:"closeTime"` - FirstId uint64 `json:"firstId"` - LastId uint64 `json:"lastId"` + FirstId int64 `json:"firstId"` + LastId int64 `json:"lastId"` Count uint64 `json:"count"` }