@@ -128,7 +128,7 @@ pub fn fail_blinded_htlc_backwards(
128
128
nodes[ i-1 ] . node . handle_update_fail_htlc (
129
129
nodes[ i] . node . get_our_node_id ( ) , & unblinded_node_updates. update_fail_htlcs [ i-1 ]
130
130
) ;
131
- do_commitment_signed_dance ( & nodes[ i-1 ] , & nodes[ i] , & unblinded_node_updates. commitment_signed , false , false ) ;
131
+ do_commitment_signed_dance ( & nodes[ i-1 ] , & nodes[ i] , & unblinded_node_updates. commitment_signed , None , false ) ;
132
132
} ,
133
133
_ => {
134
134
let blinded_node_updates = get_htlc_update_msgs ! ( nodes[ i] , nodes[ i-1 ] . node. get_our_node_id( ) ) ;
@@ -137,7 +137,7 @@ pub fn fail_blinded_htlc_backwards(
137
137
assert_eq ! ( update_malformed. sha256_of_onion, [ 0 ; 32 ] ) ;
138
138
assert_eq ! ( update_malformed. failure_code, LocalHTLCFailureReason :: InvalidOnionBlinding . failure_code( ) ) ;
139
139
nodes[ i-1 ] . node . handle_update_fail_malformed_htlc ( nodes[ i] . node . get_our_node_id ( ) , update_malformed) ;
140
- do_commitment_signed_dance ( & nodes[ i-1 ] , & nodes[ i] , & blinded_node_updates. commitment_signed , true , false ) ;
140
+ do_commitment_signed_dance ( & nodes[ i-1 ] , & nodes[ i] , & blinded_node_updates. commitment_signed , Some ( FailureType :: Blinded ) , false ) ;
141
141
}
142
142
}
143
143
}
@@ -414,15 +414,15 @@ fn do_forward_checks_failure(check: ForwardCheckFail, intro_fails: bool) {
414
414
415
415
nodes[ 1 ] . node . handle_update_add_htlc ( nodes[ 0 ] . node . get_our_node_id ( ) , & update_add) ;
416
416
check_added_monitors ! ( nodes[ 1 ] , 0 ) ;
417
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & updates_0_1. commitment_signed , true , true ) ;
417
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & updates_0_1. commitment_signed , Some ( FailureType :: Blinded ) , true ) ;
418
418
419
419
expect_pending_htlcs_forwardable ! ( nodes[ 1 ] ) ;
420
420
check_added_monitors ! ( nodes[ 1 ] , 1 ) ;
421
421
422
422
if intro_fails {
423
423
let mut updates = get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) ;
424
424
nodes[ 0 ] . node . handle_update_fail_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & updates. update_fail_htlcs [ 0 ] ) ;
425
- do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , false , false ) ;
425
+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , None , false ) ;
426
426
let failed_destination = match check {
427
427
ForwardCheckFail :: InboundOnionCheck => HTLCDestination :: InvalidOnion ,
428
428
ForwardCheckFail :: ForwardPayloadEncodedAsReceive => HTLCDestination :: InvalidOnion ,
@@ -452,7 +452,7 @@ fn do_forward_checks_failure(check: ForwardCheckFail, intro_fails: bool) {
452
452
453
453
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & update_add) ;
454
454
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
455
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & updates_1_2. commitment_signed , true , true ) ;
455
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & updates_1_2. commitment_signed , Some ( FailureType :: Blinded ) , true ) ;
456
456
457
457
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
458
458
let failed_destination = match check {
@@ -474,11 +474,11 @@ fn do_forward_checks_failure(check: ForwardCheckFail, intro_fails: bool) {
474
474
update_malformed. sha256_of_onion = [ 1 ; 32 ] ;
475
475
update_malformed. failure_code = LocalHTLCFailureReason :: InvalidOnionBlinding . failure_code ( ) ^ 1 ;
476
476
nodes[ 1 ] . node . handle_update_fail_malformed_htlc ( nodes[ 2 ] . node . get_our_node_id ( ) , update_malformed) ;
477
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates. commitment_signed , true , false ) ;
477
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates. commitment_signed , Some ( FailureType :: Blinded ) , false ) ;
478
478
479
479
let mut updates = get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) ;
480
480
nodes[ 0 ] . node . handle_update_fail_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & updates. update_fail_htlcs [ 0 ] ) ;
481
- do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , false , false ) ;
481
+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , None , false ) ;
482
482
expect_payment_failed_conditions ( & nodes[ 0 ] , payment_hash, false ,
483
483
PaymentFailedConditions :: new ( ) . expected_htlc_error_data ( LocalHTLCFailureReason :: InvalidOnionBlinding , & [ 0 ; 32 ] ) ) ;
484
484
}
@@ -510,7 +510,7 @@ fn failed_backwards_to_intro_node() {
510
510
511
511
nodes[ 1 ] . node . handle_update_add_htlc ( nodes[ 0 ] . node . get_our_node_id ( ) , & payment_event. msgs [ 0 ] ) ;
512
512
check_added_monitors ! ( nodes[ 1 ] , 0 ) ;
513
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event. commitment_msg , false , false ) ;
513
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event. commitment_msg , None , false ) ;
514
514
expect_pending_htlcs_forwardable ! ( nodes[ 1 ] ) ;
515
515
check_added_monitors ! ( & nodes[ 1 ] , 1 ) ;
516
516
@@ -523,7 +523,7 @@ fn failed_backwards_to_intro_node() {
523
523
payment_event. msgs [ 0 ] . onion_routing_packet . hop_data [ 0 ] ^= 1 ;
524
524
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & payment_event. msgs [ 0 ] ) ;
525
525
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
526
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event. commitment_msg , true , true ) ;
526
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
527
527
528
528
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
529
529
expect_htlc_handling_failed_destinations ! ( nodes[ 2 ] . node. get_and_clear_pending_events( ) , & [ HTLCDestination :: InvalidOnion ] ) ;
@@ -539,11 +539,11 @@ fn failed_backwards_to_intro_node() {
539
539
// converts it to the correct error.
540
540
update_malformed. sha256_of_onion = [ 1 ; 32 ] ;
541
541
nodes[ 1 ] . node . handle_update_fail_malformed_htlc ( nodes[ 2 ] . node . get_our_node_id ( ) , update_malformed) ;
542
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates. commitment_signed , true , false ) ;
542
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates. commitment_signed , Some ( FailureType :: Blinded ) , false ) ;
543
543
544
544
let mut updates = get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) ;
545
545
nodes[ 0 ] . node . handle_update_fail_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & updates. update_fail_htlcs [ 0 ] ) ;
546
- do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , false , false ) ;
546
+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , None , false ) ;
547
547
expect_payment_failed_conditions ( & nodes[ 0 ] , payment_hash, false ,
548
548
PaymentFailedConditions :: new ( ) . expected_htlc_error_data ( LocalHTLCFailureReason :: InvalidOnionBlinding , & [ 0 ; 32 ] ) ) ;
549
549
}
@@ -594,7 +594,7 @@ fn do_forward_fail_in_process_pending_htlc_fwds(check: ProcessPendingHTLCsCheck,
594
594
595
595
nodes[ 1 ] . node . handle_update_add_htlc ( nodes[ 0 ] . node . get_our_node_id ( ) , & payment_event. msgs [ 0 ] ) ;
596
596
check_added_monitors ! ( nodes[ 1 ] , 0 ) ;
597
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event. commitment_msg , false , false ) ;
597
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event. commitment_msg , None , false ) ;
598
598
599
599
macro_rules! cause_error {
600
600
( $prev_node: expr, $curr_node: expr, $next_node: expr, $failed_chan_id: expr, $failed_scid: expr) => {
@@ -646,7 +646,7 @@ fn do_forward_fail_in_process_pending_htlc_fwds(check: ProcessPendingHTLCsCheck,
646
646
let mut update_add = & mut updates_1_2. update_add_htlcs [ 0 ] ;
647
647
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & update_add) ;
648
648
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
649
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & updates_1_2. commitment_signed , true , true ) ;
649
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & updates_1_2. commitment_signed , Some ( FailureType :: Blinded ) , true ) ;
650
650
651
651
cause_error ! ( nodes[ 1 ] , nodes[ 2 ] , nodes[ 3 ] , chan_id_2_3, chan_upd_2_3. short_channel_id) ;
652
652
check_added_monitors ! ( nodes[ 2 ] , 1 ) ;
@@ -660,11 +660,11 @@ fn do_forward_fail_in_process_pending_htlc_fwds(check: ProcessPendingHTLCsCheck,
660
660
update_malformed. sha256_of_onion = [ 1 ; 32 ] ;
661
661
update_malformed. failure_code = LocalHTLCFailureReason :: InvalidOnionBlinding . failure_code ( ) ^ 1 ;
662
662
nodes[ 1 ] . node . handle_update_fail_malformed_htlc ( nodes[ 2 ] . node . get_our_node_id ( ) , update_malformed) ;
663
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates. commitment_signed , true , false ) ;
663
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates. commitment_signed , Some ( FailureType :: Blinded ) , false ) ;
664
664
665
665
let mut updates = get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) ;
666
666
nodes[ 0 ] . node . handle_update_fail_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & updates. update_fail_htlcs [ 0 ] ) ;
667
- do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , false , false ) ;
667
+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , None , false ) ;
668
668
expect_payment_failed_conditions ( & nodes[ 0 ] , payment_hash, false ,
669
669
PaymentFailedConditions :: new ( ) . expected_htlc_error_data ( LocalHTLCFailureReason :: InvalidOnionBlinding , & [ 0 ; 32 ] ) ) ;
670
670
}
@@ -934,7 +934,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
934
934
} ;
935
935
nodes[ 1 ] . node . handle_update_add_htlc ( nodes[ 0 ] . node . get_our_node_id ( ) , & payment_event_0_1. msgs [ 0 ] ) ;
936
936
check_added_monitors ! ( nodes[ 1 ] , 0 ) ;
937
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event_0_1. commitment_msg , false , false ) ;
937
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event_0_1. commitment_msg , None , false ) ;
938
938
expect_pending_htlcs_forwardable ! ( nodes[ 1 ] ) ;
939
939
check_added_monitors ! ( & nodes[ 1 ] , 1 ) ;
940
940
@@ -949,7 +949,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
949
949
ReceiveCheckFail :: RecipientFail => {
950
950
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & payment_event_1_2. msgs [ 0 ] ) ;
951
951
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
952
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , true , true ) ;
952
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
953
953
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
954
954
check_payment_claimable (
955
955
& nodes[ 2 ] . node . get_and_clear_pending_events ( ) [ 0 ] , payment_hash, payment_secret, amt_msat,
@@ -985,7 +985,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
985
985
) . unwrap ( ) ;
986
986
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , update_add) ;
987
987
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
988
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , true , true ) ;
988
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
989
989
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
990
990
expect_htlc_handling_failed_destinations ! ( nodes[ 2 ] . node. get_and_clear_pending_events( ) , & [ HTLCDestination :: InvalidOnion ] ) ;
991
991
check_added_monitors ( & nodes[ 2 ] , 1 ) ;
@@ -995,7 +995,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
995
995
update_add. amount_msat -= 1 ;
996
996
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , update_add) ;
997
997
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
998
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , true , true ) ;
998
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
999
999
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
1000
1000
expect_htlc_handling_failed_destinations ! ( nodes[ 2 ] . node. get_and_clear_pending_events( ) , & [ HTLCDestination :: FailedPayment { payment_hash } ] ) ;
1001
1001
check_added_monitors ( & nodes[ 2 ] , 1 ) ;
@@ -1020,7 +1020,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
1020
1020
assert_eq ! ( payment_event_1_2. msgs[ 0 ] . cltv_expiry, nodes[ 0 ] . best_block_info( ) . 1 + 1 + excess_final_cltv_delta_opt. unwrap( ) as u32 + TEST_FINAL_CLTV ) ;
1021
1021
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & payment_event_1_2. msgs [ 0 ] ) ;
1022
1022
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
1023
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , true , true ) ;
1023
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
1024
1024
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
1025
1025
expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore ! ( nodes[ 2 ] ,
1026
1026
vec![ HTLCDestination :: FailedPayment { payment_hash } ] ) ;
@@ -1029,7 +1029,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
1029
1029
ReceiveCheckFail :: PaymentConstraints => {
1030
1030
nodes[ 2 ] . node . handle_update_add_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & payment_event_1_2. msgs [ 0 ] ) ;
1031
1031
check_added_monitors ! ( nodes[ 2 ] , 0 ) ;
1032
- do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , true , true ) ;
1032
+ do_commitment_signed_dance ( & nodes[ 2 ] , & nodes[ 1 ] , & payment_event_1_2. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
1033
1033
expect_pending_htlcs_forwardable ! ( nodes[ 2 ] ) ;
1034
1034
expect_htlc_handling_failed_destinations ! ( nodes[ 2 ] . node. get_and_clear_pending_events( ) , & [ HTLCDestination :: FailedPayment { payment_hash } ] ) ;
1035
1035
check_added_monitors ( & nodes[ 2 ] , 1 ) ;
@@ -1042,7 +1042,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
1042
1042
assert_eq ! ( update_malformed. sha256_of_onion, [ 0 ; 32 ] ) ;
1043
1043
assert_eq ! ( update_malformed. failure_code, LocalHTLCFailureReason :: InvalidOnionBlinding . failure_code( ) ) ;
1044
1044
nodes[ 1 ] . node . handle_update_fail_malformed_htlc ( nodes[ 2 ] . node . get_our_node_id ( ) , update_malformed) ;
1045
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates_2_1. commitment_signed , true , false ) ;
1045
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 2 ] , & updates_2_1. commitment_signed , Some ( FailureType :: Blinded ) , false ) ;
1046
1046
1047
1047
let updates_1_0 = if check == ReceiveCheckFail :: ChannelCheck {
1048
1048
let events = nodes[ 1 ] . node . get_and_clear_pending_msg_events ( ) ;
@@ -1060,7 +1060,7 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
1060
1060
} else { get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) } ;
1061
1061
assert_eq ! ( updates_1_0. update_fail_htlcs. len( ) , 1 ) ;
1062
1062
nodes[ 0 ] . node . handle_update_fail_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & updates_1_0. update_fail_htlcs [ 0 ] ) ;
1063
- do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates_1_0. commitment_signed , false , false ) ;
1063
+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates_1_0. commitment_signed , None , false ) ;
1064
1064
expect_payment_failed_conditions ( & nodes[ 0 ] , payment_hash, false ,
1065
1065
PaymentFailedConditions :: new ( ) . expected_htlc_error_data ( LocalHTLCFailureReason :: InvalidOnionBlinding , & [ 0 ; 32 ] ) ) ;
1066
1066
}
@@ -1131,12 +1131,12 @@ fn blinded_path_retries() {
1131
1131
assert_eq!( update_malformed. sha256_of_onion, [ 0 ; 32 ] ) ;
1132
1132
assert_eq!( update_malformed. failure_code, LocalHTLCFailureReason :: InvalidOnionBlinding . failure_code( ) ) ;
1133
1133
$intro_node. node. handle_update_fail_malformed_htlc( nodes[ 3 ] . node. get_our_node_id( ) , update_malformed) ;
1134
- do_commitment_signed_dance( & $intro_node, & nodes[ 3 ] , & updates. commitment_signed, true , false ) ;
1134
+ do_commitment_signed_dance( & $intro_node, & nodes[ 3 ] , & updates. commitment_signed, Some ( FailureType :: Blinded ) , false ) ;
1135
1135
1136
1136
let updates = get_htlc_update_msgs!( $intro_node, nodes[ 0 ] . node. get_our_node_id( ) ) ;
1137
1137
assert_eq!( updates. update_fail_htlcs. len( ) , 1 ) ;
1138
1138
nodes[ 0 ] . node. handle_update_fail_htlc( $intro_node. node. get_our_node_id( ) , & updates. update_fail_htlcs[ 0 ] ) ;
1139
- do_commitment_signed_dance( & nodes[ 0 ] , & $intro_node, & updates. commitment_signed, false , false ) ;
1139
+ do_commitment_signed_dance( & nodes[ 0 ] , & $intro_node, & updates. commitment_signed, None , false ) ;
1140
1140
1141
1141
let mut events = nodes[ 0 ] . node. get_and_clear_pending_events( ) ;
1142
1142
assert_eq!( events. len( ) , 2 ) ;
@@ -1238,7 +1238,7 @@ fn min_htlc() {
1238
1238
} ;
1239
1239
nodes[ 1 ] . node . handle_update_add_htlc ( nodes[ 0 ] . node . get_our_node_id ( ) , & payment_event_0_1. msgs [ 0 ] ) ;
1240
1240
check_added_monitors ! ( nodes[ 1 ] , 0 ) ;
1241
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event_0_1. commitment_msg , true , true ) ;
1241
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event_0_1. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
1242
1242
expect_pending_htlcs_forwardable ! ( nodes[ 1 ] ) ;
1243
1243
expect_htlc_handling_failed_destinations ! (
1244
1244
nodes[ 1 ] . node. get_and_clear_pending_events( ) ,
@@ -1247,7 +1247,7 @@ fn min_htlc() {
1247
1247
check_added_monitors ( & nodes[ 1 ] , 1 ) ;
1248
1248
let mut updates = get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) ;
1249
1249
nodes[ 0 ] . node . handle_update_fail_htlc ( nodes[ 1 ] . node . get_our_node_id ( ) , & updates. update_fail_htlcs [ 0 ] ) ;
1250
- do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , false , false ) ;
1250
+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , None , false ) ;
1251
1251
expect_payment_failed_conditions ( & nodes[ 0 ] , payment_hash, false ,
1252
1252
PaymentFailedConditions :: new ( ) . expected_htlc_error_data ( LocalHTLCFailureReason :: InvalidOnionBlinding , & [ 0 ; 32 ] ) ) ;
1253
1253
}
@@ -1431,7 +1431,7 @@ fn fails_receive_tlvs_authentication() {
1431
1431
let mut payment_event = SendEvent :: from_event ( ev) ;
1432
1432
1433
1433
nodes[ 1 ] . node . handle_update_add_htlc ( nodes[ 0 ] . node . get_our_node_id ( ) , & payment_event. msgs [ 0 ] ) ;
1434
- do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event. commitment_msg , true , true ) ;
1434
+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event. commitment_msg , Some ( FailureType :: Blinded ) , true ) ;
1435
1435
expect_pending_htlcs_forwardable ! ( nodes[ 1 ] ) ;
1436
1436
nodes[ 1 ] . node . process_pending_htlc_forwards ( ) ;
1437
1437
check_added_monitors ! ( nodes[ 1 ] , 1 ) ;
0 commit comments