erigontech / erigontech/erigon
TxPool: txpool_content must not return blob txs
Open
Dencun
RPC
support
- Dominant language
- Go
- Stars
- 3.6k
- Forks
- 1.5k
- Avg merge
- 1d 16h
- Merged PRs (30d)
- 455
Description
I see geth does:
```
func (p *BlobPool) Content() (map[common.Address][]*types.Transaction, map[common.Address][]*types.Transaction) {
return make(map[common.Address][]*types.Transaction), make(map[common.Address][]*types.Transaction)
}
func (p *BlobPool) ContentFrom(addr common.Address) ([]*types.Transaction, []*types.Transaction) {
return []*types.Transaction{}, []*types.Transaction{}
}
func (p *BlobPool) Locals() []common.Address {
return []common.Address{}
}
```
Seems same need for: txpool_contentFrom and txpool_locals
Contributor guide
Assessment
This issue has not been assessed yet.