From 955f0bd8e6394d4a9609038af5ee2aca9352048a Mon Sep 17 00:00:00 2001 From: maskpp Date: Wed, 6 Aug 2025 10:07:56 +0800 Subject: [PATCH] fix bug --- core/txpool/blobpool/blobpool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index f439766696..2c3b456258 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1674,7 +1674,7 @@ func (p *BlobPool) Pending(filter txpool.PendingFilter) map[common.Address][]*tx } } if filter.GasLimitCap != 0 { - if tx.execGas > filter.GasLimitCap { + if tx.ExecGas > filter.GasLimitCap { break // execution gas limit is too high } }