From 2fbe95ebba0200d4143c698ac99cf3b61b9975d2 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Mon, 6 Aug 2018 18:57:08 -0700 Subject: [PATCH] autopilot: modify OpenChannel to no longer take in set of addrs --- autopilot/interface.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autopilot/interface.go b/autopilot/interface.go index 8c94d6d7..2c7c5191 100644 --- a/autopilot/interface.go +++ b/autopilot/interface.go @@ -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. //