Skip to content

Commit

Permalink
pyetst: Fix up a test checking fees after fee calc change
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Feb 13, 2024
1 parent f9d02b6 commit abfe55e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -3376,9 +3376,9 @@ def test_feerate_spam(node_factory, chainparams):
# Now change feerates to something l1 can't afford.
l1.set_feerates((200000, 200000, 200000, 200000))

# It will raise as far as it can (30000)
# It will raise as far as it can (30551)
if 'anchors_zero_fee_htlc_tx/even' in only_one(l1.rpc.listpeerchannels()['channels'])['channel_type']['names']:
maxfeerate = 30000
maxfeerate = 30551
else:
maxfeerate = 48000
l1.daemon.wait_for_log('Setting REMOTE feerate to {}'.format(maxfeerate))
Expand Down

0 comments on commit abfe55e

Please sign in to comment.