From 54dfcc3b55d5fa72be17fa61be21b7f633ddd238 Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Fri, 5 Jul 2024 10:56:36 -0700 Subject: [PATCH] #4911: fixed syntax error on backend type enum --- services/horizon/internal/ingest/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/horizon/internal/ingest/main.go b/services/horizon/internal/ingest/main.go index 0aa2f10f27..a7efa58f2c 100644 --- a/services/horizon/internal/ingest/main.go +++ b/services/horizon/internal/ingest/main.go @@ -96,6 +96,9 @@ func (s LedgerMetaBackendType) String() string { return "captive core" case LedgerBackendPrecomputed: return "precomputed" + default: + return "" + } } type BufferedBackendConfig struct {