routing/chainview: remove possibility of deadlock in shutdown of blockEventQueue

This commit is contained in:
Olaoluwa Osuntokun 2017-11-16 16:00:58 -08:00
parent 0297042a8d
commit d2c8f01768
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21
2 changed files with 1 additions and 2 deletions

View File

@ -72,7 +72,6 @@ func (b *blockEventQueue) Stop() {
close(b.quit)
b.queueCond.Signal()
b.wg.Wait()
}
// queueCoordinator is the queue's main loop, handling incoming block events

View File

@ -2173,7 +2173,7 @@ func (r *rpcServer) GetTransactions(ctx context.Context,
}
}
// TODO(btcsuite): add pagination support
// TODO(roasbeef): add pagination support
transactions, err := r.server.cc.wallet.ListTransactionDetails()
if err != nil {
return nil, err