mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
remove outdated todos
This commit is contained in:
parent
cc0112aee0
commit
3d8039b70d
2 changed files with 0 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue