tests: bump the ceiling for dust, fixes failures for liquid

Liquid's threshold for dust is a bit higher, so we bump up the max limit
here so we can actually get the whole MPP'd payment sent over the wire
This commit is contained in:
niftynei 2021-10-06 12:39:08 -05:00 committed by Christian Decker
parent 1fe829c546
commit 208b161226
1 changed files with 2 additions and 1 deletions

View File

@ -3415,7 +3415,8 @@ def test_pay_peer(node_factory, bitcoind):
v /
l3
"""
l1, l2, l3 = node_factory.get_nodes(3)
# Set the dust exposure higher, this gets triggered on liquid
l1, l2, l3 = node_factory.get_nodes(3, opts={'max-dust-htlc-exposure-msat': '100000sat'})
node_factory.join_nodes([l1, l2])
node_factory.join_nodes([l1, l3])
node_factory.join_nodes([l3, l2], wait_for_announce=True)