mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
core/txpool/blobpool: fix benchmarkPoolPending (#33161)
Add BlobTxs flag to filter. Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
3d2a4cb053
commit
12a389f065
1 changed files with 1 additions and 0 deletions
|
|
@ -2353,6 +2353,7 @@ func benchmarkPoolPending(b *testing.B, datacap uint64) {
|
|||
MinTip: uint256.NewInt(1),
|
||||
BaseFee: chain.basefee,
|
||||
BlobFee: chain.blobfee,
|
||||
BlobTxs: true,
|
||||
})
|
||||
if len(p) != int(capacity) {
|
||||
b.Fatalf("have %d want %d", len(p), capacity)
|
||||
|
|
|
|||
Loading…
Reference in a new issue