Skip to content

Commit f3ff7e1

Browse files
Antoine RiardTheBlueMatt
Antoine Riard
authored andcommitted
Test htlc outputs single tx claim due to timeout case
1 parent 96d159f commit f3ff7e1

File tree

2 files changed

+72
-1
lines changed

2 files changed

+72
-1
lines changed

src/ln/channelmanager.rs

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3557,6 +3557,77 @@ mod tests {
35573557
assert_eq!(nodes[1].node.list_channels().len(), 0);
35583558
}
35593559

3560+
#[test]
3561+
fn claim_htlc_outputs_single_tx() {
3562+
// Node revoked old state, htlcs have timed out, claim each of them in separated justice tx
3563+
let nodes = create_network(2);
3564+
3565+
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1);
3566+
3567+
// Rebalance the network to generate htlc in the two directions
3568+
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
3569+
// node[0] is gonna to revoke an old state thus node[1] should be able to claim both offered/received HTLC outputs on top of commitment tx, but this
3570+
// time as two different claim transactions as we're gonna to timeout htlc with given a high current height
3571+
let payment_preimage_1 = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
3572+
let _payment_preimage_2 = route_payment(&nodes[1], &vec!(&nodes[0])[..], 3000000).0;
3573+
3574+
// Get the will-be-revoked local txn from node[0]
3575+
let revoked_local_txn = nodes[0].node.channel_state.lock().unwrap().by_id.get(&chan_1.2).unwrap().last_local_commitment_txn.clone();
3576+
3577+
//Revoke the old state
3578+
claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_1);
3579+
3580+
{
3581+
let header = BlockHeader { version: 0x20000000, prev_blockhash: Default::default(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
3582+
3583+
nodes[0].chain_monitor.block_connected_with_filtering(&Block { header, txdata: vec![revoked_local_txn[0].clone()] }, 200);
3584+
3585+
nodes[1].chain_monitor.block_connected_with_filtering(&Block { header, txdata: vec![revoked_local_txn[0].clone()] }, 200);
3586+
let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
3587+
assert_eq!(node_txn.len(), 10); // ChannelManager : 2, ChannelMontitor: 8 (2 revocation htlc tx, 1 local commitment tx + 1 htlc timeout tx) * 2 (block-rescan)
3588+
3589+
assert_eq!(node_txn[0], node_txn[6]);
3590+
assert_eq!(node_txn[1], node_txn[7]);
3591+
assert_eq!(node_txn[2], node_txn[8]);
3592+
assert_eq!(node_txn[3], node_txn[9]);
3593+
assert_eq!(node_txn[2], node_txn[4]); //local commitment tx + htlc timeout tx broadcated by ChannelManger
3594+
assert_eq!(node_txn[3], node_txn[5]);
3595+
3596+
assert_eq!(node_txn[0].input.len(), 1);
3597+
assert_eq!(node_txn[1].input.len(), 1);
3598+
3599+
let mut revoked_tx_map = HashMap::new();
3600+
revoked_tx_map.insert(revoked_local_txn[0].txid(), revoked_local_txn[0].clone());
3601+
node_txn[0].verify(&revoked_tx_map).unwrap();
3602+
node_txn[1].verify(&revoked_tx_map).unwrap();
3603+
3604+
let witness_script_1 = node_txn[0].clone().input[0].witness.pop().unwrap();
3605+
let witness_script_2 = node_txn[1].clone().input[0].witness.pop().unwrap();
3606+
if witness_script_1.len() > 133 {
3607+
assert_eq!(witness_script_1.len(), 138);
3608+
assert_eq!(witness_script_2.len(), 133);
3609+
} else {
3610+
assert_eq!(witness_script_1.len(), 133);
3611+
assert_eq!(witness_script_2.len(), 138);
3612+
}
3613+
3614+
let mut funding_tx_map = HashMap::new();
3615+
funding_tx_map.insert(chan_1.3.txid(), chan_1.3.clone());
3616+
node_txn[2].verify(&funding_tx_map).unwrap();
3617+
assert_eq!(node_txn[2].input.len(), 1);
3618+
3619+
assert_eq!(node_txn[3].input.len(), 1);
3620+
let witness_script = node_txn[3].clone().input[0].witness.pop().unwrap();
3621+
assert_eq!(witness_script.len(), 133); //Spending an offered htlc output
3622+
assert_eq!(node_txn[3].input[0].previous_output.txid, node_txn[2].txid());
3623+
assert_ne!(node_txn[3].input[0].previous_output.txid, node_txn[0].input[0].previous_output.txid);
3624+
assert_ne!(node_txn[3].input[0].previous_output.txid, node_txn[1].input[0].previous_output.txid);
3625+
}
3626+
get_announce_close_broadcast_events(&nodes, 0, 1);
3627+
assert_eq!(nodes[0].node.list_channels().len(), 0);
3628+
assert_eq!(nodes[1].node.list_channels().len(), 0);
3629+
}
3630+
35603631
#[test]
35613632
fn test_htlc_ignore_latest_remote_commitment() {
35623633
// Test that HTLC transactions spending the latest remote commitment transaction are simply

src/ln/channelmonitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ impl ChannelMonitor {
856856
};
857857
let sighash_parts = bip143::SighashComponents::new(&single_htlc_tx);
858858
sign_input!(sighash_parts, single_htlc_tx.input[0], Some(idx), htlc.amount_msat / 1000);
859-
txn_to_broadcast.push(single_htlc_tx); // TODO: This is not yet tested in ChannelManager!
859+
txn_to_broadcast.push(single_htlc_tx);
860860
}
861861
}
862862
}

0 commit comments

Comments
 (0)