(addr common.Address)
| 280 | } |
| 281 | |
| 282 | func (pool *TxPool) getQueueTxList(addr common.Address) *txList { |
| 283 | return pool.queue[addr] |
| 284 | } |
| 285 | |
| 286 | func (pool *TxPool) setPendingTxList(addr common.Address, txlist *txList) bool { |
| 287 | return setMapItem(pool.pending, addr, txlist, pool.config.MaxTxMapSize) |
no outgoing calls
no test coverage detected