Skip to content

Commit 9ead046

Browse files
committed
f Field docs
1 parent 0ddf784 commit 9ead046

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/access.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,19 @@ pub struct LdkLiteChainAccess<D>
2323
where
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
}

0 commit comments

Comments
 (0)