From 50140a63534e6a59fe2936cb36d96f63743fafb5 Mon Sep 17 00:00:00 2001 From: Fornax <23104993+fornax2@users.noreply.github.com> Date: Mon, 28 Oct 2024 23:59:54 -0300 Subject: [PATCH] The snapshot field updated from string -> int64 --- shared/types/api/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/types/api/node.go b/shared/types/api/node.go index 361b217b2..e7613cfa0 100644 --- a/shared/types/api/node.go +++ b/shared/types/api/node.go @@ -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"`