pay: remove inbuilt command in favor of plugin.

This doesn't actually remove some of the now-unnecessary infrastructure
though.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2019-01-15 20:34:07 +10:30
committed by Christian Decker
parent 3f8dd7a95f
commit 0a8b4f8935
8 changed files with 8 additions and 714 deletions

View File

@@ -114,5 +114,5 @@ def test_pay_plugin(node_factory):
l1, l2 = node_factory.line_graph(2)
inv = l2.rpc.invoice(123000, 'label', 'description', 3700)
res = l1.rpc.pay2(bolt11=inv['bolt11'])
res = l1.rpc.pay(bolt11=inv['bolt11'])
assert res['status'] == 'complete'