func (p *peer) AsyncSendTransactions(txs []*types.Transaction) {
    select {
    case p.queuedTxs <- txs:
        // Mark all the transactions as known, but ensure we don't overflow our limits
        for _, tx := range txs {