Skip to content

Commit

Permalink
Merge branch 'b/testnet' into b/master
Browse files Browse the repository at this point in the history
  • Loading branch information
romever committed Nov 19, 2024
2 parents 8344464 + ba3dd4d commit 5976e5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/internal/logic/cacherefresh.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ func SignStatsCacheJob(ctx context.Context, svcCtx *svc.ServiceContext) {
var timeResp []int64
for i := len(days) - 1; i > 0; i-- {
startDay := days[i].Day
endDay := days[i].Day.AddDate(0, 0, 1)
//endDay := days[i].Day.AddDate(0, 0, 1)

timeResp = append(timeResp, endDay.Unix())
timeResp = append(timeResp, startDay.Unix())

signCount := signMap[startDay]

Expand Down

0 comments on commit 5976e5e

Please sign in to comment.