We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915da52 commit aa2bcedCopy full SHA for aa2bced
bindings/python/src/ldk_node/test_ldk_node.py
@@ -185,7 +185,8 @@ def test_channel_full_cycle(self):
185
print("EVENT:", channel_ready_event_2)
186
node_2.event_handled()
187
188
- invoice = node_2.bolt11_payment().receive(2500000, "asdf", 9217)
+ description = Bolt11InvoiceStringDescription.DIRECT("asdf")
189
+ invoice = node_2.bolt11_payment().receive(2500000, description, 9217)
190
node_1.bolt11_payment().send(invoice, None)
191
192
payment_successful_event_1 = node_1.wait_next_event()
0 commit comments