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>
2323where
2424 D : BatchDatabase ,
2525{
26+ // A BDK blockchain used for wallet sync.
2627 blockchain : EsploraBlockchain ,
28+ // A BDK on-chain wallet.
2729 wallet : Mutex < bdk:: Wallet < D > > ,
30+ // Transactions that were registered via the `Filter` interface and have to be processed.
2831 queued_transactions : Mutex < Vec < Txid > > ,
32+ // Transactions that were previously processed, but must not be forgotten yet.
2933 watched_transactions : Mutex < Vec < Txid > > ,
34+ // Outputs that were registered via the `Filter` interface and have to be processed.
3035 queued_outputs : Mutex < Vec < WatchedOutput > > ,
36+ // Outputs that were previously processed, but must not be forgotten yet.
3137 watched_outputs : Mutex < Vec < WatchedOutput > > ,
38+ // The tip height observed during our last sync.
3239 last_sync_height : tokio:: sync:: Mutex < Option < u32 > > ,
3340 logger : Arc < FilesystemLogger > ,
3441}
You can’t perform that action at this time.
0 commit comments