Skip to content

Commit 955f0bd

Browse files
committed
fix bug
1 parent 344720f commit 955f0bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/txpool/blobpool/blobpool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ func (p *BlobPool) Pending(filter txpool.PendingFilter) map[common.Address][]*tx
16741674
}
16751675
}
16761676
if filter.GasLimitCap != 0 {
1677-
if tx.execGas > filter.GasLimitCap {
1677+
if tx.ExecGas > filter.GasLimitCap {
16781678
break // execution gas limit is too high
16791679
}
16801680
}

0 commit comments

Comments
 (0)