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 18312a4 commit f816eefCopy full SHA for f816eef
tests/test_plugin.py
@@ -4427,3 +4427,11 @@ def test_sql_crash(node_factory, bitcoind):
4427
4428
assert 'updates' not in only_one(l1.rpc.listpeerchannels()['channels'])
4429
l1.rpc.sql(f"SELECT * FROM peerchannels;")
4430
+
4431
4432
+@pytest.mark.xfail(strict=True)
4433
+def test_listchannels_broken_message(node_factory):
4434
+ """This gave a bogus BROKEN message with deprecated-apis enabled"""
4435
+ l1 = node_factory.get_node(options={'allow-deprecated-apis': True})
4436
4437
+ l1.rpc.listchannels()
0 commit comments