mirror of
https://github.com/aljazceru/lightning.git
synced 2026-02-07 07:04:25 +01:00
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:
committed by
neil saitug
parent
2011bcb397
commit
7ed9bbd3dd
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user