autopilot: modify OpenChannel to no longer take in set of addrs

This commit is contained in:
Wilmer Paulino 2018-08-06 18:57:08 -07:00
parent 4492cb934f
commit 2fbe95ebba
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F

@ -136,8 +136,7 @@ type ChannelController interface {
// specified amount. This function should un-block immediately after
// the funding transaction that marks the channel open has been
// broadcast.
OpenChannel(target *btcec.PublicKey, amt btcutil.Amount,
addrs []net.Addr) error
OpenChannel(target *btcec.PublicKey, amt btcutil.Amount) error
// CloseChannel attempts to close out the target channel.
//