From 5803b44c2d1072b0eca40403c4da83a4faf185d4 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 24 Mar 2026 17:13:24 +0100 Subject: [PATCH 1/2] less loud --- block/internal/syncing/da_retriever.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/internal/syncing/da_retriever.go b/block/internal/syncing/da_retriever.go index f1ea3ba64..9566f06a2 100644 --- a/block/internal/syncing/da_retriever.go +++ b/block/internal/syncing/da_retriever.go @@ -289,7 +289,7 @@ func (r *daRetriever) tryDecodeHeader(bz []byte, daHeight uint64) *types.SignedH } } if r.strictMode && !isValidEnvelope { - r.logger.Warn().Msg("strict mode: rejecting block that is not a fully valid envelope") + r.logger.Debug().Msg("strict mode: rejecting block that is not a fully valid envelope") return nil } From c69037d2c7cf58b35490d5075b50fb45708882b8 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 24 Mar 2026 17:15:28 +0100 Subject: [PATCH 2/2] comment --- block/internal/syncing/da_retriever.go | 1 + 1 file changed, 1 insertion(+) diff --git a/block/internal/syncing/da_retriever.go b/block/internal/syncing/da_retriever.go index 9566f06a2..ece2b21cb 100644 --- a/block/internal/syncing/da_retriever.go +++ b/block/internal/syncing/da_retriever.go @@ -289,6 +289,7 @@ func (r *daRetriever) tryDecodeHeader(bz []byte, daHeight uint64) *types.SignedH } } if r.strictMode && !isValidEnvelope { + // no need to print warnings, as tryDecodeHeader could try to decode data first, which will show this warning. r.logger.Debug().Msg("strict mode: rejecting block that is not a fully valid envelope") return nil }