-
Notifications
You must be signed in to change notification settings - Fork 21.6k
core/txpool/blobpool: Do not use blobs with wrong sidecar version while building block after Osaka #32577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core/txpool/blobpool: Do not use blobs with wrong sidecar version while building block after Osaka #32577
Changes from 3 commits
440f2d3
2adb528
b98b69e
d59174f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -78,8 +78,9 @@ type PendingFilter struct { | |
| BlobFee *uint256.Int // Minimum 4844 blobfee needed to include a blob transaction | ||
| GasLimitCap uint64 // Maximum gas can be used for a single transaction execution (0 means no limit) | ||
|
|
||
| OnlyPlainTxs bool // Return only plain EVM transactions (peer-join announces, block space filling) | ||
| OnlyBlobTxs bool // Return only blob transactions (block blob-space filling) | ||
| OnlyPlainTxs bool // Return only plain EVM transactions (peer-join announces, block space filling) | ||
| OnlyBlobV0Txs bool // Return only V0 encoded blob transactions (block blob-space filling) | ||
|
||
| OnlyBlobV1Txs bool // Return only V1 encoded blob transactions (block blob-space filling) | ||
|
||
| } | ||
|
|
||
| // TxMetadata denotes the metadata of a transaction. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.