bare skeleton of funding -> open channel workflow

This commit is contained in:
Olaoluwa Osuntokun 2015-12-02 16:49:41 -08:00
parent ab10677d91
commit f8e4ff8edc
2 changed files with 9 additions and 0 deletions

4
wallet/channel.go Normal file
View File

@ -0,0 +1,4 @@
package wallet
type LightningChannel struct {
}

View File

@ -124,3 +124,8 @@ func (r *ChannelReservation) Cancel() {
<-doneChan
}
// WaitForChannelOpen...
func (r *ChannelReservation) WaitForChannelOpen() *LightningChannel {
return nil
}