@@ -109,14 +109,6 @@ func (r *daRetriever) RetrieveFromDA(ctx context.Context, daHeight uint64) ([]co
109109 return r .processBlobs (ctx , blobsResp .Data , daHeight ), nil
110110}
111111
112- var (
113- // ErrForceInclusionNotConfigured is returned when the forced inclusion namespace is not configured.
114- ErrForceInclusionNotConfigured = errors .New ("forced inclusion namespace not configured" )
115-
116- // ErrForcedInclusionDataTooLarge is returned when forced inclusion data exceeds the maximum blob size.
117- ErrForcedInclusionDataTooLarge = errors .New ("forced inclusion data exceeds maximum blob size limit" )
118- )
119-
120112// RetrieveForcedIncludedTxsFromDA retrieves forced inclusion transactions from the DA layer.
121113//
122114// Behavior:
@@ -132,7 +124,7 @@ var (
132124// - Error if forced inclusion is not configured or DA layer is unavailable
133125func (r * daRetriever ) RetrieveForcedIncludedTxsFromDA (ctx context.Context , daHeight uint64 ) (* common.ForcedIncludedEvent , error ) {
134126 if ! r .hasForcedInclusionNs {
135- return nil , ErrForceInclusionNotConfigured
127+ return nil , common . ErrForceInclusionNotConfigured
136128 }
137129
138130 // Calculate deterministic epoch boundaries
@@ -306,7 +298,7 @@ func (r *daRetriever) processForcedInclusionBlobs(
306298 Int ("blob_size" , dataSize ).
307299 Float64 ("max_size" , common .DefaultMaxBlobSize ).
308300 Msg ("forced inclusion blob exceeds maximum size - skipping" )
309- return fmt .Errorf ("%w: blob size %d exceeds maximum %f" , ErrForcedInclusionDataTooLarge , dataSize , common .DefaultMaxBlobSize )
301+ return fmt .Errorf ("blob size %d exceeds maximum %f" , dataSize , common .DefaultMaxBlobSize )
310302 }
311303
312304 // Check if adding this blob would exceed the current epoch's max size
0 commit comments