(addr common.Address, txlist *txList)
| 288 | } |
| 289 | |
| 290 | func (pool *TxPool) setQueueTxList(addr common.Address, txlist *txList) bool { |
| 291 | return setMapItem(pool.queue, addr, txlist, pool.config.MaxTxMapSize) |
| 292 | } |
| 293 | |
| 294 | func (pool *TxPool) deletePendingTxList(addr common.Address) { |
| 295 | delete(pool.pending, addr) |