diff --git a/docs/wiki/EL/el-architecture.md b/docs/wiki/EL/el-architecture.md index 77b4a366..299b6b97 100644 --- a/docs/wiki/EL/el-architecture.md +++ b/docs/wiki/EL/el-architecture.md @@ -166,10 +166,6 @@ TODO ### Transaction Pools -In Ethereum two primary types of transaction pools are recognized. - -#### Geth - In Ethereum two primary types of transaction pools are recognized: 1. **Legacy Pools**: Managed by Geth, these pools employ price-sorted heaps or priority queues to organize transactions based on their price. Specifically, transactions are arranged using two heaps: one prioritizes the effective tip for the upcoming block, and the other focuses on the gas fee cap. During periods of saturation, the larger of these two heaps is selected for the eviction of transactions, optimizing the pool's efficiency and responsiveness. [urgent and floating heaps](https://github.com/ethereum/go-ethereum/blob/064f37d6f67a012eea0bf8d410346fb1684004b4/core/txpool/legacypool/list.go#L525)