Skip to content

Commit

Permalink
remove start time unix milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
bhakiyakalimuthu committed Apr 24, 2024
1 parent 4315639 commit ba8a47e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ func (m *BoostService) handleGetHeader(w http.ResponseWriter, req *http.Request)
headers := map[string]string{
HeaderKeySlotUID: slotUID.String(),
HeaderStartTimeMsIntoSlot: fmt.Sprintf("%d", msIntoSlot),
HeaderStartTimeMsUnix: fmt.Sprintf("%d", time.Now().UTC().UnixMilli()),
}
// Prepare relay responses
result := bidResp{} // the final response, containing the highest bid (if any)
Expand Down Expand Up @@ -674,7 +673,6 @@ func (m *BoostService) processDenebPayload(w http.ResponseWriter, req *http.Requ
headers := map[string]string{
HeaderKeySlotUID: currentSlotUID,
HeaderStartTimeMsIntoSlot: fmt.Sprintf("%d", msIntoSlot),
HeaderStartTimeMsUnix: fmt.Sprintf("%d", time.Now().UTC().UnixMilli()),
}

// Prepare for requests
Expand Down

0 comments on commit ba8a47e

Please sign in to comment.