From be16d14d3b5585e492b4bf887339fd2c65231e76 Mon Sep 17 00:00:00 2001 From: LUCCA DUKIC <109136188+LuccaBitfly@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:02:51 +0200 Subject: [PATCH] (BIDS-2369) fix error msg --- cmd/misc/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/misc/main.go b/cmd/misc/main.go index 225b3c4179..004c057c04 100644 --- a/cmd/misc/main.go +++ b/cmd/misc/main.go @@ -856,7 +856,7 @@ OUTER: firstEpoch, _ := utils.GetFirstAndLastEpochForDay(day + 1) maxValidatorIndex, err := db.BigtableClient.GetMaxValidatorindexForEpoch(firstEpoch) if err != nil { - utils.LogFatal(err, "error in GetMaxValidatorindexForEpoch: could not get max validator index from validator income history", 0, map[string]interface{}{ + utils.LogFatal(err, "error in GetMaxValidatorindexForEpoch: could not get max validator index", 0, map[string]interface{}{ "epoch": firstEpoch, }) } else if maxValidatorIndex == uint64(0) {