Skip to content

Commit

Permalink
Merge pull request #691 from rocket-pool/v1-fix-collector-type-error
Browse files Browse the repository at this point in the history
The snapshot field updated from string -> int64
  • Loading branch information
0xfornax authored Oct 29, 2024
2 parents 4969a80 + 50140a6 commit cfda2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/types/api/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ type SnapshotProposal struct {
Start int64 `json:"start"`
End int64 `json:"end"`
State string `json:"state"`
Snapshot string `json:"snapshot"`
Snapshot int64 `json:"snapshot"`
Author string `json:"author"`
Choices []string `json:"choices"`
Scores []float64 `json:"scores"`
Expand Down

0 comments on commit cfda2b8

Please sign in to comment.