tests: massively speed up our wait for enormous feerates

We do smoothing, waiting for this to hit the target (50k+) was taking
longer than my TIMEOUT=15; here we increase the speed at which it hits
exit velocity, so to speak.
This commit is contained in:
niftynei 2022-07-14 22:58:53 -05:00 committed by Rusty Russell
parent f2e7e9d919
commit 769efe8d54

View file

@ -2557,7 +2557,7 @@ def test_onchain_all_dust(node_factory, bitcoind, executor):
l2.wait_for_channel_onchain(l1.info['id'])
# Make l1's fees really high (and wait for it to exceed 50000)
l1.set_feerates((100000, 100000, 100000, 100000))
l1.set_feerates((1000000, 1000000, 1000000, 1000000))
l1.daemon.wait_for_log('Feerate estimate for unilateral_close set to [56789][0-9]{4}')
bitcoind.generate_block(1)