From 3c5f0825de0389e636de00c88b19066c5d9f3f89 Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 17 Jan 2024 09:49:00 -0600 Subject: [PATCH] fix: excluding 0 --- blob/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blob/service.go b/blob/service.go index eaaa764e7a..6a70772797 100644 --- a/blob/service.go +++ b/blob/service.go @@ -88,7 +88,7 @@ func (s *Service) Submit(ctx context.Context, blobs []*Blob, gasPrice GasPrice) log.Debugw("submitting blobs", "amount", len(blobs)) options := DefaultSubmitOptions() - if gasPrice > 0 { + if gasPrice >= 0 { blobSizes := make([]uint32, len(blobs)) for i, blob := range blobs { blobSizes[i] = uint32(len(blob.Data))