lntest: use explicit channel commitment negotiation for multi-hop itests

This commit is contained in:
Wilmer Paulino
2021-06-09 16:38:45 -07:00
committed by Olaoluwa Osuntokun
parent 449f207217
commit 523eef5cf4
2 changed files with 9 additions and 2 deletions

View File

@@ -982,6 +982,10 @@ type OpenChannelParams struct {
// SatPerVByte is the amount of satoshis to spend in chain fees per virtual
// byte of the transaction.
SatPerVByte btcutil.Amount
// CommitmentType is the commitment type that should be used for the
// channel to be opened.
CommitmentType lnrpc.CommitmentType
}
// OpenChannel attempts to open a channel between srcNode and destNode with the
@@ -1025,6 +1029,7 @@ func (n *NetworkHarness) OpenChannel(srcNode, destNode *HarnessNode,
RemoteMaxHtlcs: uint32(p.RemoteMaxHtlcs),
FundingShim: p.FundingShim,
SatPerByte: int64(p.SatPerVByte),
CommitmentType: p.CommitmentType,
}
respStream, err := srcNode.OpenChannel(ctx, openReq)

View File

@@ -224,7 +224,8 @@ func createThreeHopNetwork(t *harnessTest, net *lntest.NetworkHarness,
aliceChanPoint := openChannelAndAssert(
t, net, alice, bob,
lntest.OpenChannelParams{
Amt: chanAmt,
Amt: chanAmt,
CommitmentType: c,
},
)
@@ -264,7 +265,8 @@ func createThreeHopNetwork(t *harnessTest, net *lntest.NetworkHarness,
bobChanPoint := openChannelAndAssert(
t, net, bob, carol,
lntest.OpenChannelParams{
Amt: chanAmt,
Amt: chanAmt,
CommitmentType: c,
},
)
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)