Skip to content

Commit 6c87481

Browse files
evanlinjindanielabrozzoni
authored andcommitted
chore(chain): move use in indexed_tx_graph.rs so clippy is happy
1 parent 537aa03 commit 6c87481

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

crates/chain/src/indexed_tx_graph.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use alloc::vec::Vec;
44
use bitcoin::{Block, OutPoint, Transaction, TxOut, Txid};
55

66
use crate::{
7-
keychain,
87
tx_graph::{self, TxGraph},
98
Anchor, AnchorFromBlockPosition, Append, BlockId,
109
};
@@ -321,8 +320,8 @@ impl<A, IA: Default> From<tx_graph::ChangeSet<A>> for ChangeSet<A, IA> {
321320
}
322321

323322
#[cfg(feature = "miniscript")]
324-
impl<A, K> From<keychain::ChangeSet<K>> for ChangeSet<A, keychain::ChangeSet<K>> {
325-
fn from(indexer: keychain::ChangeSet<K>) -> Self {
323+
impl<A, K> From<crate::keychain::ChangeSet<K>> for ChangeSet<A, crate::keychain::ChangeSet<K>> {
324+
fn from(indexer: crate::keychain::ChangeSet<K>) -> Self {
326325
Self {
327326
graph: Default::default(),
328327
indexer,

0 commit comments

Comments
 (0)