mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
rpcserver: log connections to transaction subscription stream
This commit is contained in:
parent
42099ef5e1
commit
70901dc157
@ -5015,6 +5015,7 @@ func (r *rpcServer) SubscribeTransactions(req *lnrpc.GetTransactionsRequest,
|
||||
return err
|
||||
}
|
||||
defer txClient.Cancel()
|
||||
rpcsLog.Infof("New transaction subscription")
|
||||
|
||||
for {
|
||||
select {
|
||||
@ -5056,6 +5057,7 @@ func (r *rpcServer) SubscribeTransactions(req *lnrpc.GetTransactionsRequest,
|
||||
}
|
||||
|
||||
case <-updateStream.Context().Done():
|
||||
rpcsLog.Infof("Cancelling transaction subscription")
|
||||
return updateStream.Context().Err()
|
||||
|
||||
case <-r.quit:
|
||||
|
Loading…
Reference in New Issue
Block a user