multi: remove internal peer_id usage

This commit is contained in:
MeshCollider
2018-02-14 18:48:42 +13:00
committed by Olaoluwa Osuntokun
parent 4ed5ba0d26
commit 915c4201b9
6 changed files with 36 additions and 75 deletions

View File

@@ -93,7 +93,7 @@ func (c *chanController) OpenChannel(target *btcec.PublicKey,
// TODO(halseth): make configurable?
minHtlc := lnwire.NewMSatFromSatoshis(1)
updateStream, errChan := c.server.OpenChannel(-1, target, amt, 0,
updateStream, errChan := c.server.OpenChannel(target, amt, 0,
minHtlc, feePerWeight, false)
select {