itest: multi part payments test fix.

Because we need to account for an addtional fee buffer we need to
increase channel capacities for the multi payment tests.
This commit is contained in:
ziggie
2023-11-05 11:33:22 +01:00
parent 51c56d2825
commit a1678fa9b7
4 changed files with 98 additions and 67 deletions

View File

@@ -28,12 +28,12 @@ func testSendMultiPathPayment(ht *lntest.HarnessTest) {
// \__ Dave ____/
//
req := &mppOpenChannelRequest{
amtAliceCarol: 235000,
amtAliceDave: 135000,
amtCarolBob: 135000,
amtCarolEve: 135000,
amtDaveBob: 135000,
amtEveBob: 135000,
amtAliceCarol: 285000,
amtAliceDave: 155000,
amtCarolBob: 200000,
amtCarolEve: 155000,
amtDaveBob: 155000,
amtEveBob: 155000,
}
mts.openChannels(req)
chanPointAliceDave := mts.channelPoints[1]