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