From 1cad40aaf08726384014591ef03828ee4f6a7600 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 15 Dec 2015 15:22:18 -0600 Subject: [PATCH] add "future" open channel to reservation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit p2p logic will most likely spawn a grouting to do a blocking read on this channel. When the channel is written to, that means the funding transaction is now X blocks deep, and we’ll start to sign commitment txns do updates etc. --- wallet/reservation.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wallet/reservation.go b/wallet/reservation.go index c690e90a..92bb9cd4 100644 --- a/wallet/reservation.go +++ b/wallet/reservation.go @@ -42,6 +42,8 @@ type ChannelReservation struct { reservationID uint64 wallet *LightningWallet + + chanOpen chan *LightningChannel } // newChannelReservation...