File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
lightning-transaction-sync/src Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,13 @@ where
32
32
{
33
33
// Transactions that were registered via the `Filter` interface and have to be processed.
34
34
queued_transactions : Mutex < HashSet < Txid > > ,
35
- // Transactions that were previously processed, but must not be forgotten yet.
35
+ // Transactions that were previously processed, but must not be forgotten
36
+ // yet since they still need to be monitored for confirmation on-chain.
36
37
watched_transactions : Mutex < HashSet < Txid > > ,
37
38
// Outputs that were registered via the `Filter` interface and have to be processed.
38
39
queued_outputs : Mutex < HashSet < WatchedOutput > > ,
39
- // Outputs that were previously processed, but must not be forgotten yet.
40
+ // Outputs that were previously processed, but must not be forgotten yet as
41
+ // as we still need to monitor any spends on-chain.
40
42
watched_outputs : Mutex < HashSet < WatchedOutput > > ,
41
43
// Indicates whether we need to resync, e.g., after encountering an error.
42
44
pending_sync : AtomicBool ,
You can’t perform that action at this time.
0 commit comments