mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
pytest: Stabilize test_onchain_feechange
dev-disconnect seems to be causing warning that we need to allow.
This commit is contained in:
parent
5a066d8536
commit
1341ca2ae0
@ -1817,9 +1817,15 @@ def test_onchain_feechange(node_factory, bitcoind, executor):
|
||||
# We need 2 to drop to chain, because then 1's HTLC timeout tx
|
||||
# is generated on-the-fly, and is thus feerate sensitive.
|
||||
disconnects = ['-WIRE_UPDATE_FAIL_HTLC', 'permfail']
|
||||
l1, l2 = node_factory.line_graph(2, opts=[{'may_reconnect': True},
|
||||
{'may_reconnect': True,
|
||||
'disconnect': disconnects}])
|
||||
l1, l2 = node_factory.line_graph(2, opts=[
|
||||
{
|
||||
'may_reconnect': True,
|
||||
'allow_warning': True,
|
||||
}, {
|
||||
'may_reconnect': True,
|
||||
'disconnect': disconnects,
|
||||
}
|
||||
])
|
||||
|
||||
rhash = l2.rpc.invoice(10**8, 'onchain_timeout', 'desc')['payment_hash']
|
||||
# We underpay, so it fails.
|
||||
|
Loading…
Reference in New Issue
Block a user