From d291f6131378342d39b129fa92c06ac57423fcea Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 14 May 2024 15:50:22 +0700 Subject: [PATCH] Updated Timestamp type in DalPublishCommitment (#33) --- tzkt/data/operations.go | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tzkt/data/operations.go b/tzkt/data/operations.go index 3cf0438..b8e0039 100644 --- a/tzkt/data/operations.go +++ b/tzkt/data/operations.go @@ -867,18 +867,18 @@ type SrGameInfo struct { } type DalPublishCommitment struct { - Type string `json:"type"` - ID uint64 `json:"id"` - Level uint64 `json:"level"` - Timestamp string `json:"timestamp"` - Hash string `json:"hash"` - Sender *Address `json:"sender"` - Counter uint64 `json:"counter"` - GasLimit uint64 `json:"gasLimit"` - GasUsed uint64 `json:"gasUsed"` - StorageLimit uint64 `json:"storageLimit"` - BakerFee uint64 `json:"bakerFee"` - Slot int `json:"slot"` - Commitment string `json:"commitment"` - Status string `json:"status"` + Type string `json:"type"` + ID uint64 `json:"id"` + Level uint64 `json:"level"` + Timestamp time.Time `json:"timestamp"` + Hash string `json:"hash"` + Sender *Address `json:"sender"` + Counter uint64 `json:"counter"` + GasLimit uint64 `json:"gasLimit"` + GasUsed uint64 `json:"gasUsed"` + StorageLimit uint64 `json:"storageLimit"` + BakerFee uint64 `json:"bakerFee"` + Slot int `json:"slot"` + Commitment string `json:"commitment"` + Status string `json:"status"` }