lnwallet: actually connect the rpc client...

This commit is contained in:
Olaoluwa Osuntokun 2015-12-29 21:08:56 -06:00
parent 75132e631a
commit ace1aca43c

@ -320,6 +320,10 @@ func (l *LightningWallet) Startup() error {
// Start the goroutines in the underlying wallet. // Start the goroutines in the underlying wallet.
l.rpc = rpcc l.rpc = rpcc
if err := l.rpc.Start(); err != nil {
return err
}
l.Start(rpcc) l.Start(rpcc)
l.wg.Add(1) l.wg.Add(1)