Skip to content

Commit

Permalink
fix: ut
Browse files Browse the repository at this point in the history
  • Loading branch information
irrun committed Dec 26, 2024
1 parent e42bdd2 commit e765715
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions core/txpool/bundlepool/bundlepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/txpool"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto/kzg4844"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/metrics"
Expand Down Expand Up @@ -86,6 +87,16 @@ type BundlePool struct {
blockchain BlockChain
}

func (p *BundlePool) GetBlobs(vhashes []common.Hash) ([]*kzg4844.Blob, []*kzg4844.Proof) {
//TODO implement me
panic("implement me")
}

func (p *BundlePool) Clear() {
//TODO implement me
panic("implement me")
}

func New(config Config, chain BlockChain) *BundlePool {
// Sanitize the input to ensure no vulnerable gas prices are set
config = (&config).sanitize()
Expand Down

0 comments on commit e765715

Please sign in to comment.