pub fn matching_block_logs_with_tx_hashes<'a, I, R>(
filter: &Filter,
block_num_hash: BlockNumHash,
block_timestamp: u64,
tx_hashes_and_receipts: I,
removed: bool,
) -> Vec<Log>where
I: IntoIterator<Item = (TxHash, &'a R)>,
R: TxReceipt<Log = Log> + 'a,Expand description
Returns all matching of a block’s receipts when the transaction hashes are known.