Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_coinmoves.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,10 +738,10 @@ def test_coinmoves_unilateral_htlc_timeout(node_factory, bitcoind):
'utxo': f"{fundchannel['txid']}:{fundchannel['outnum'] ^ 1}"},
{'account_id': 'wallet', # change from anchor spend
'blockheight': 104,
'credit_msat': 15579000,
'credit_msat': pytest.approx(15579000, abs=7000),
'debit_msat': 0,
'extra_tags': [],
'output_msat': 15579000,
'output_msat': pytest.approx(15579000, abs=7000),
'primary_tag': 'deposit',
'utxo': f"{anchor_spend_txid}:0"},
{'account_id': fundchannel['channel_id'],
Expand Down
Loading