Skip to content

Commit

Permalink
feat(chain): Derive Clone on IndexedTxGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlinjin committed Dec 10, 2024
1 parent e985445 commit e34024c
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 @@ -13,7 +13,7 @@ use crate::{
/// The [`IndexedTxGraph`] combines a [`TxGraph`] and an [`Indexer`] implementation.
///
/// It ensures that [`TxGraph`] and [`Indexer`] are updated atomically.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct IndexedTxGraph<A, I> {
/// Transaction index.
pub index: I,
Expand Down

0 comments on commit e34024c

Please sign in to comment.