We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2adb528 commit b98b69eCopy full SHA for b98b69e
core/txpool/blobpool/blobpool.go
@@ -1691,10 +1691,10 @@ func (p *BlobPool) Pending(filter txpool.PendingFilter) map[common.Address][]*tx
1691
1692
// Skip v0 or v1 blob transactions if not requested
1693
if filter.OnlyBlobV0Txs && tx.version != types.BlobSidecarVersion0 {
1694
- continue
+ break // skip the rest because of nonce ordering
1695
}
1696
if filter.OnlyBlobV1Txs && tx.version != types.BlobSidecarVersion1 {
1697
1698
1699
1700
// If transaction filtering was requested, discard badly priced ones
0 commit comments