Skip to content

Commit

Permalink
Updated Timestamp type in DalPublishCommitment (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-karuna authored May 14, 2024
1 parent 7ba4ea8 commit d291f61
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tzkt/data/operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

0 comments on commit d291f61

Please sign in to comment.