-
Notifications
You must be signed in to change notification settings - Fork 412
Watch revoked HTLC-Success/Timeout outputs #519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
ariard
wants to merge
3
commits into
lightningdevkit:master
from
ariard:2020-2-fix-remote-htlc-outputs-tracking
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2127,8 +2127,10 @@ fn test_justice_tx() { | |
test_txn_broadcast(&nodes[1], &chan_5, None, HTLCType::NONE); | ||
|
||
nodes[0].block_notifier.block_connected(&Block { header, txdata: vec![revoked_local_txn[0].clone()] }, 1); | ||
// Verify broadcast of revoked HTLC-timeout | ||
let node_txn = test_txn_broadcast(&nodes[0], &chan_5, Some(revoked_local_txn[0].clone()), HTLCType::TIMEOUT); | ||
header = BlockHeader { version: 0x20000000, prev_blockhash: header.bitcoin_hash(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 }; | ||
// Broadcast revoked HTLC-timeout on node 1 | ||
nodes[1].block_notifier.block_connected(&Block { header, txdata: vec![node_txn[1].clone()] }, 1); | ||
test_revoked_htlc_claim_txn_broadcast(&nodes[1], node_txn[1].clone(), revoked_local_txn[0].clone()); | ||
} | ||
|
@@ -4182,9 +4184,14 @@ fn test_static_spendable_outputs_justice_tx_revoked_htlc_timeout_tx() { | |
check_closed_broadcast!(nodes[1], false); | ||
|
||
let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap(); | ||
assert_eq!(node_txn.len(), 4 ); // ChannelMonitor: justice tx on revoked commitment, justice tx on revoked HTLC-timeout, adjusted justice tx, ChannelManager: local commitment tx | ||
assert_eq!(node_txn.len(), 4); // ChannelMonitor: justice tx on revoked commitment, justice tx on revoked HTLC-timeout, adjusted justice tx, ChannelManager: local commitment tx | ||
assert_eq!(node_txn[0].input.len(), 2); | ||
check_spends!(node_txn[0], revoked_local_txn[0]); | ||
check_spends!(node_txn[1], chan_1.3); | ||
assert_eq!(node_txn[2].input.len(), 1); | ||
check_spends!(node_txn[2], revoked_htlc_txn[0]); | ||
assert_eq!(node_txn[3].input.len(), 1); | ||
check_spends!(node_txn[3], revoked_local_txn[0]); | ||
|
||
// Check B's ChannelMonitor was able to generate the right spendable output descriptor | ||
let spend_txn = check_spendable_outputs!(nodes[1], 1); | ||
|
@@ -4233,7 +4240,7 @@ fn test_static_spendable_outputs_justice_tx_revoked_htlc_success_tx() { | |
|
||
// Check A's ChannelMonitor was able to generate the right spendable output descriptor | ||
let spend_txn = check_spendable_outputs!(nodes[0], 1); | ||
assert_eq!(spend_txn.len(), 4); | ||
assert_eq!(spend_txn.len(), 5); // Duplicated SpendableOutput due to block rescan after revoked htlc output tracking | ||
assert_eq!(spend_txn[0], spend_txn[2]); | ||
check_spends!(spend_txn[0], revoked_local_txn[0]); // spending to_remote output from revoked local tx | ||
check_spends!(spend_txn[1], node_txn[0]); // spending justice tx output from revoked local tx htlc received output | ||
|
@@ -6949,7 +6956,7 @@ fn test_bump_penalty_txn_on_revoked_htlcs() { | |
|
||
assert_eq!(node_txn[0].input.len(), 2); | ||
check_spends!(node_txn[0], revoked_htlc_txn[0], revoked_htlc_txn[1]); | ||
//// Verify bumped tx is different and 25% bump heuristic | ||
// Verify bumped tx is different and 25% bump heuristic | ||
assert_ne!(first, node_txn[0].txid()); | ||
let fee_2 = revoked_htlc_txn[0].output[0].value + revoked_htlc_txn[1].output[0].value - node_txn[0].output[0].value; | ||
let feerate_2 = fee_2 * 1000 / node_txn[0].get_weight() as u64; | ||
|
@@ -6964,7 +6971,13 @@ fn test_bump_penalty_txn_on_revoked_htlcs() { | |
connect_blocks(&nodes[0].block_notifier, 20, 145, true, header_145.bitcoin_hash()); | ||
{ | ||
let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap(); | ||
assert_eq!(node_txn.len(), 1); //TODO: fix check_spend_remote_htlc lack of watch output | ||
// We verify than no new transaction has been broadcast because previously | ||
// we were buggy on this exact behavior by not tracking for monitoring remote HTLC outputs (see #411) | ||
// which means we wouldn't see a spend of them by a justice tx and bumped justice tx | ||
// were generated forever instead of safe cleaning after confirmation and ANTI_REORG_SAFE_DELAY blocks. | ||
// Enforce spending of revoked htlc output by claiming transaction remove request as expected and dry | ||
// up bumped justice generation. | ||
assert_eq!(node_txn.len(), 0); | ||
node_txn.clear(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You definitely dont need this now. |
||
} | ||
check_closed_broadcast!(nodes[0], false); | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is confusing - you're returning (value, ()) to imply "nothing to watch". Can you at least comment that and update the callsite in block_connected to not push anything to watch_outputs if there are no outputs set?