From a35394e0a1445d71ba241eb7a9a0706bfbeb43b9 Mon Sep 17 00:00:00 2001 From: toneloc <@tonklaus> Date: Fri, 31 May 2024 14:18:40 -0400 Subject: [PATCH] added payment for test --- test_stablechannels.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test_stablechannels.py b/test_stablechannels.py index 9ed436b..f3c4cdd 100644 --- a/test_stablechannels.py +++ b/test_stablechannels.py @@ -47,6 +47,12 @@ def test_start(node_factory, bitcoind): }, ) l1.daemon.wait_for_log("Starting Stable Channel with these details") - invoice = l2.rpc.invoice(5_000_000, "label1", "desc") + invoice = l2.rpc.invoice(1_000_000, "label1", "desc") l1.rpc.pay(invoice["bolt11"]) + + invoice = l1.rpc.invoice(1_000_000, "label1", "desc") + l2.rpc.pay(invoice["bolt11"]) + l1.rpc.call("dev-check-stable") + +