File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,19 @@ pub struct LdkLiteChainAccess<D>
23
23
where
24
24
D : BatchDatabase ,
25
25
{
26
+ // A BDK blockchain used for wallet sync.
26
27
blockchain : EsploraBlockchain ,
28
+ // A BDK on-chain wallet.
27
29
wallet : Mutex < bdk:: Wallet < D > > ,
30
+ // Transactions that were registered via the `Filter` interface and have to be processed.
28
31
queued_transactions : Mutex < Vec < Txid > > ,
32
+ // Transactions that were previously processed, but must not be forgotten yet.
29
33
watched_transactions : Mutex < Vec < Txid > > ,
34
+ // Outputs that were registered via the `Filter` interface and have to be processed.
30
35
queued_outputs : Mutex < Vec < WatchedOutput > > ,
36
+ // Outputs that were previously processed, but must not be forgotten yet.
31
37
watched_outputs : Mutex < Vec < WatchedOutput > > ,
38
+ // The tip height observed during our last sync.
32
39
last_sync_height : tokio:: sync:: Mutex < Option < u32 > > ,
33
40
logger : Arc < FilesystemLogger > ,
34
41
}
You can’t perform that action at this time.
0 commit comments