latest_mutation_timestamp = None;
// this is the highest timestamp value, so set the seen timestamp accordingly
- current_node_delta.latest_details.as_mut().map(|mut d| d.seen.replace(current_seen_timestamp));
+ current_node_delta.latest_details.as_mut().map(|d| d.seen.replace(current_seen_timestamp));
}
if let Some(last_seen_update) = current_node_delta.last_details_before_seen.as_ref() {
}
let mut transaction = block.txdata.swap_remove(transaction_index as usize);
if output_index as usize >= transaction.output.len() {
- log_error!(logger, "Could't find output {} in transaction {}", output_index, transaction.txid());
+ log_error!(logger, "Could't find output {} in transaction {}", output_index, transaction.compute_txid());
return Err(UtxoLookupError::UnknownTx);
}
Ok(transaction.output.swap_remove(output_index as usize))