Skip to content

Commit 444e200

Browse files
authored
fix(types): withdrawls index type is int64 (#1555)
1 parent a1098f8 commit 444e200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/pkg/commons/types/exporter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ type WithdrawalsByEpoch struct {
248248

249249
type WithdrawalsNotification struct {
250250
Slot uint64 `json:"slot,omitempty"`
251-
Index uint64 `json:"index"`
251+
Index int64 `json:"index"`
252252
ValidatorIndex uint64 `json:"validatorindex"`
253253
Address []byte `json:"address"`
254254
Amount uint64 `json:"amount"`

0 commit comments

Comments
 (0)