diff --git a/queue/gc_queue.go b/queue/gc_queue.go index 7698f324..965e841d 100644 --- a/queue/gc_queue.go +++ b/queue/gc_queue.go @@ -2,7 +2,6 @@ package queue import ( "container/list" - "sync" "time" "github.com/lightningnetwork/lnd/ticker" @@ -44,7 +43,6 @@ type GCQueue struct { // increasing time of arrival. freeList *list.List - wg sync.WaitGroup quit chan struct{} }