// A structure to capture whats being written to the ethcl.known_gaps table.
typeDbKnownGapsstruct{
StartSlotstring// The start slot for known_gaps, inclusive.
EndSlotstring// The end slot for known_gaps, inclusive.
CheckedOutbool// Indicates if any process is currently processing this entry.
ReprocessingErrorstring// The error that occurred when attempting to reprocess these entries.
EntryErrorstring// The error that caused this entry to be added to the table. Could be null.
EntryTimestring// The time this range was added to the DB. This can help us catch ranges that have not been processed for a long time due to some error.
EntryProcessstring// The entry process that added this process. Potential options are StartUp, Error, ManualEntry, HeadGap.