From 208b1612261b0126bc6bcfa1c51e7be6ed167ef1 Mon Sep 17 00:00:00 2001 From: niftynei Date: Wed, 6 Oct 2021 12:39:08 -0500 Subject: [PATCH] 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 --- tests/test_pay.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_pay.py b/tests/test_pay.py index 4b58a32a5..7197516ec 100644 --- a/tests/test_pay.py +++ b/tests/test_pay.py @@ -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)