Skip to content

Commit

Permalink
[bdk_chain_redesign] More tweaks and renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlinjin committed Apr 5, 2023
1 parent ddd5e95 commit 24cd8c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crates/chain/src/indexed_tx_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ impl<A: BlockAnchor, I: TxIndex> IndexedTxGraph<A, I> {
}
}

pub fn filter_and_insert_txs<'t, T>(
pub fn insert_relevant_txs<'t, T>(
&mut self,
txs: T,
observation: ObservedAs<A>,
Expand Down
10 changes: 5 additions & 5 deletions crates/chain/src/local_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ impl LocalChain {
};

// the first block's height to invalidate in the local chain
let invalidate_from = self.blocks.range(invalidate_lb..).next().map(|(&h, _)| h);
let invalidate_from_height = self.blocks.range(invalidate_lb..).next().map(|(&h, _)| h);

// the first block of height to invalidate (if any) should be represented in the update
if let Some(first_invalid) = invalidate_from {
if !update.contains_key(&first_invalid) {
return Err(UpdateError::NotConnected(first_invalid));
if let Some(first_invalid_height) = invalidate_from_height {
if !update.contains_key(&first_invalid_height) {
return Err(UpdateError::NotConnected(first_invalid_height));
}
}

let invalidated_heights = invalidate_from
let invalidated_heights = invalidate_from_height
.into_iter()
.flat_map(|from_height| self.blocks.range(from_height..).map(|(h, _)| h));

Expand Down
2 changes: 1 addition & 1 deletion crates/chain/src/tx_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//! # use bitcoin::Transaction;
//! # let tx_a = tx_from_hex(RAW_TX_1);
//! # let tx_b = tx_from_hex(RAW_TX_2);
//! let mut graph = TxGraph::<BlockId>::default();
//! let mut graph: TxGraph = TxGraph::default();
//!
//! // preview a transaction insertion (not actually inserted)
//! let additions = graph.insert_tx_preview(tx_a);
Expand Down

0 comments on commit 24cd8c5

Please sign in to comment.