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.
This commit is contained in:
Michael Schmoock 2019-04-15 22:48:09 +02:00 committed by neil saitug
parent 2011bcb397
commit 7ed9bbd3dd
1 changed files with 2 additions and 2 deletions

View File

@ -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.