fix: make it UTC time just in case

This commit is contained in:
Waris Aiemworawutikul
2024-06-11 13:16:18 +07:00
parent 0a77e3ff0f
commit 9b5caa589c

View File

@@ -184,7 +184,7 @@ func (h *handler) eventsHandler(ctx *fiber.Ctx) error {
responses[i].WalletAddress = event.WalletAddress
responses[i].Action = protobuf.Action_name[event.Action]
responses[i].ParsedMessage = event.ParsedMessage
responses[i].BlockTimestamp = event.BlockTimestamp.Time
responses[i].BlockTimestamp = event.BlockTimestamp.Time.UTC()
responses[i].BlockHash = event.BlockHash
}