(
client: &AsyncClient,
txids: &[Txid],
)
| 112 | } |
| 113 | |
| 114 | pub async fn get_tx_statuses( |
| 115 | client: &AsyncClient, |
| 116 | txids: &[Txid], |
| 117 | ) -> Vec<Result<TxStatus, esplora_client::Error>> { |
| 118 | join_all(txids.iter().map(|txid| client.get_tx_status(txid))).await |
| 119 | } |
| 120 | |
| 121 | pub async fn get_onchain_txs( |
| 122 | client: &AsyncClient, |
no outgoing calls
no test coverage detected