Skip to content

Commit

Permalink
#4911: fixed syntax error on backend type enum
Browse files Browse the repository at this point in the history
  • Loading branch information
sreuland committed Jul 5, 2024
1 parent ff28599 commit 54dfcc3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions services/horizon/internal/ingest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ func (s LedgerMetaBackendType) String() string {
return "captive core"
case LedgerBackendPrecomputed:
return "precomputed"
default:
return ""
}
}

type BufferedBackendConfig struct {
Expand Down

0 comments on commit 54dfcc3

Please sign in to comment.