We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cc0a64 commit f0190eeCopy full SHA for f0190ee
1 file changed
src/wallet/mod.rs
@@ -84,6 +84,9 @@ pub use persisted::*;
84
pub use utils::IsDust;
85
pub use utils::TxDetails;
86
87
+type KeychainTxGraph<KeychainKind> =
88
+ IndexedTxGraph<ConfirmationBlockTime, KeychainTxOutIndex<KeychainKind>>;
89
+
90
/// A Bitcoin wallet
91
///
92
/// The `Wallet` acts as a way of coherently interfacing with output descriptors and related
@@ -106,7 +109,7 @@ pub struct Wallet {
106
109
signers: Arc<SignersContainer>,
107
110
change_signers: Arc<SignersContainer>,
108
111
chain: LocalChain,
- tx_graph: IndexedTxGraph<ConfirmationBlockTime, KeychainTxOutIndex<KeychainKind>>,
112
+ tx_graph: KeychainTxGraph<KeychainKind>,
113
stage: ChangeSet,
114
network: Network,
115
secp: SecpCtx,
0 commit comments