From 92ebf1fb560c5772b395017622a60d46a0c1fcbf Mon Sep 17 00:00:00 2001 From: thedevbirb Date: Tue, 5 Nov 2024 09:56:46 +0100 Subject: [PATCH] fix: noisy log --- builder/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/builder.go b/builder/builder.go index e765b4b..8376f26 100644 --- a/builder/builder.go +++ b/builder/builder.go @@ -496,7 +496,7 @@ func (b *Builder) onSealedBlock(opts SubmitBlockOpts) error { // NOTE: we can ignore constraints for `processBuiltBlock` go b.processBuiltBlock(opts.Block, opts.BlockValue, opts.OrdersClosedAt, opts.SealedAt, opts.CommitedBundles, opts.AllBundles, opts.UsedSbundles, &blockBidMsg) if versionedBlockRequestWithConstraintProofs != nil { - log.Info(fmt.Sprintf("[BOLT]: Sending sealed block to relay %s", versionedBlockRequestWithConstraintProofs)) + log.Info(fmt.Sprintf("[BOLT]: Sending sealed block %d with proofs to relay", opts.Block.Number())) err = b.relay.SubmitBlockWithProofs(versionedBlockRequestWithConstraintProofs, opts.ValidatorData) } else if len(constraints) == 0 { // If versionedBlockRequestWithConstraintsProofs is nil and no constraints, then we don't have proofs to send