remove outdated todos

This commit is contained in:
healthykim 2026-06-16 16:27:22 +02:00
parent cc0112aee0
commit 3d8039b70d
2 changed files with 0 additions and 5 deletions

View file

@ -89,7 +89,6 @@ func (s *Suite) EthTests() []utesting.Test {
{Name: "InvalidTxs", Fn: s.TestInvalidTxs},
{Name: "NewPooledTxs", Fn: s.TestNewPooledTxs},
{Name: "BlobViolations", Fn: s.TestBlobViolations},
//todo: 4 tests below requires hive test changes
{Name: "TestBlobTxWithoutSidecar", Fn: s.TestBlobTxWithoutSidecar},
{Name: "TestBlobTxWithMismatchedSidecar", Fn: s.TestBlobTxWithMismatchedSidecar},
// test eth/72 blob txs

View file

@ -1691,10 +1691,6 @@ func (p *BlobPool) Get(hash common.Hash) *types.Transaction {
}
// GetRLP returns an RLP-encoded transaction if it is contained in the pool.
// TODO: The pool internally stores pooledBlobTx (cell sidecar format), but callers expect
// types.Transaction RLP. This requires an additional decode-encode step, which is inefficient
// and contradicts the original purpose of this function.
// Possible improvements: Drop eth70 and store the cell and transaction separately.
func (p *BlobPool) GetRLP(hash common.Hash, version uint) []byte {
data := p.getRLP(hash)
if len(data) == 0 {