From 7ed9bbd3dd8eff0e5962a647d738f8afcc0c0385 Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Mon, 15 Apr 2019 22:48:09 +0200 Subject: [PATCH] test: make routeboost_private use higher capacity This change is required, so we can increase the minimum channel capacity (min-channel-sat) from 1k to 10k sat within the next commits. --- tests/test_invoices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_invoices.py b/tests/test_invoices.py index 7ba08e61b..b550f5005 100644 --- a/tests/test_invoices.py +++ b/tests/test_invoices.py @@ -181,7 +181,7 @@ def test_invoice_routeboost_private(node_factory, bitcoind): # Attach public channel to l1 so it doesn't look like a dead-end. l0 = node_factory.get_node() l0.rpc.connect(l1.info['id'], 'localhost', l1.port) - scid = l0.fund_channel(l1, 2 * (10**4)) + scid = l0.fund_channel(l1, 2 * (10**5)) bitcoind.generate_block(5) # Make sure channel is totally public. @@ -209,7 +209,7 @@ def test_invoice_routeboost_private(node_factory, bitcoind): # the exposure of private channels. l3 = node_factory.get_node() l3.rpc.connect(l2.info['id'], 'localhost', l2.port) - scid = l3.fund_channel(l2, (10**4)) + scid = l3.fund_channel(l2, (10**5)) bitcoind.generate_block(5) # Make sure channel is totally public.