From 11fa3da4ccf9665f942cf21bb541da77467879b5 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 30 Jan 2024 04:48:12 +1030 Subject: [PATCH] pytest: Remove check for to-be-removed message about msg from channeld. This race is resolved with the gossipd changes (and this message is also removed!). Signed-off-by: Rusty Russell --- tests/test_opening.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/test_opening.py b/tests/test_opening.py index 740365ddd..e7be8bc49 100644 --- a/tests/test_opening.py +++ b/tests/test_opening.py @@ -2543,10 +2543,6 @@ def test_anchor_min_emergency(bitcoind, node_factory): with pytest.raises(RpcError, match=r'We would not have enough left for min-emergency-msat 25000sat'): l1.rpc.withdraw(addr2, 'all') - # Make sure channeld tells gossipd about channel before we close, otherwise - # we get spurious "bad gossip" complaints if l2 sends channel_updates. - l1.daemon.wait_for_log("received private channel announcement from channeld") - # Even with onchain anchor channel, it still keeps reserve (just in case!). l1.rpc.close(l2.info['id']) bitcoind.generate_block(1, wait_for_mempool=1)