From 7acc146578cffa261e90d59acf818854c4271da1 Mon Sep 17 00:00:00 2001 From: pk910 Date: Mon, 19 Aug 2024 12:49:42 +0200 Subject: [PATCH] fix rendering of attester slashings --- handlers/slot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/slot.go b/handlers/slot.go index cd82da0a..f87d151c 100644 --- a/handlers/slot.go +++ b/handlers/slot.go @@ -472,7 +472,7 @@ func getSlotPageBlockData(blockData *services.CombinedBlockResponse, epochStatsV pageData.AttesterSlashings = make([]*models.SlotPageAttesterSlashing, pageData.AttesterSlashingsCount) for i, slashing := range attesterSlashings { att1, _ := slashing.Attestation1() - att2, _ := slashing.Attestation1() + att2, _ := slashing.Attestation2() if att1 == nil || att2 == nil { continue }