mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Revert "Remove early return in create_sweeptxs_for_our_ctx."
This reverts commit d0cfb3ae12
.
This commit is contained in:
parent
3e8080b669
commit
6197cfbb3b
1 changed files with 5 additions and 0 deletions
|
@ -186,6 +186,11 @@ def create_sweeptxs_for_our_ctx(chan: 'Channel', ctx: Transaction, ctn: int,
|
|||
return
|
||||
# we have to_local, to_remote.
|
||||
# other outputs are htlcs
|
||||
# if they are spent, we need to generate the script
|
||||
# so, second-stage htlc sweep should not be returned here
|
||||
if ctn < chan.get_oldest_unrevoked_ctn(LOCAL):
|
||||
_logger.info("we breached.")
|
||||
return {}
|
||||
txs = {}
|
||||
# to_local
|
||||
output_idx = ctx.get_output_idx_from_address(to_local_address)
|
||||
|
|
Loading…
Add table
Reference in a new issue