Skip to content

Commit

Permalink
[bdk_chain_redesign] mut_index should be index_mut
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlinjin committed Mar 27, 2023
1 parent db7883d commit 313965d
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -73,7 +73,7 @@ impl<A: BlockAnchor, I: TxIndex> IndexedTxGraph<A, I> {
}

/// Get a mutable reference to the internal transaction index.
pub fn mut_index(&mut self) -> &mut I {
pub fn index_mut(&mut self) -> &mut I {
&mut self.index
}

Expand Down

0 comments on commit 313965d

Please sign in to comment.