pilot: pass private=false to OpenChannel

This commit is contained in:
nsa 2017-11-13 15:49:42 -08:00 committed by Olaoluwa Osuntokun
parent 9fcb845bd2
commit 5c4add8e0e
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ func (c *chanController) OpenChannel(target *btcec.PublicKey,
return err
}
updateStream, errChan := c.server.OpenChannel(-1, target, amt, 0,
feePerWeight)
feePerWeight, false)
select {
case err := <-errChan: