Skip to content

Commit

Permalink
added payment for test
Browse files Browse the repository at this point in the history
  • Loading branch information
toneloc committed May 31, 2024
1 parent 3f0f24a commit a35394e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test_stablechannels.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")


0 comments on commit a35394e

Please sign in to comment.