From 9982bf4c33fbec2dd1db00adc55c358ab2cf1bf4 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sun, 24 Apr 2016 12:40:40 -0700 Subject: [PATCH] use lnwallet's Shutdown method instead of btcwallet's inner Stop --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index 384eeac0..f187c495 100644 --- a/server.go +++ b/server.go @@ -247,7 +247,7 @@ func (s *server) Stop() error { } s.rpcServer.Stop() - s.lnwallet.Stop() + s.lnwallet.Shutdown() // Signal all the lingering goroutines to quit. close(s.quit)