From ace1aca43cc800cafd055674abb1a08ba974ac6f Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 29 Dec 2015 21:08:56 -0600 Subject: [PATCH] lnwallet: actually connect the rpc client... --- lnwallet/wallet.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lnwallet/wallet.go b/lnwallet/wallet.go index 9bb30060..dcf2c505 100644 --- a/lnwallet/wallet.go +++ b/lnwallet/wallet.go @@ -320,6 +320,10 @@ func (l *LightningWallet) Startup() error { // Start the goroutines in the underlying wallet. l.rpc = rpcc + if err := l.rpc.Start(); err != nil { + return err + } + l.Start(rpcc) l.wg.Add(1)