@@ -1113,12 +1113,16 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
1113
1113
// Make sure Alice is aware of channel Bob=>Carol.
1114
1114
ht .AssertTopologyChannelOpen (alice , cpBC )
1115
1115
1116
+ // Connect the interceptor.
1117
+ interceptor , cancelInterceptor := bob .RPC .HtlcInterceptor ()
1118
+ defer cancelInterceptor ()
1119
+
1116
1120
// First we check that the payment is successful when bob resumes the
1117
1121
// htlc even though the payment context was canceled before invoice
1118
1122
// settlement.
1119
1123
sendPaymentInterceptAndCancel (
1120
1124
ht , ts , cpAB , routerrpc .ResolveHoldForwardAction_RESUME ,
1121
- lnrpc .Payment_SUCCEEDED ,
1125
+ lnrpc .Payment_SUCCEEDED , interceptor ,
1122
1126
)
1123
1127
1124
1128
// Next we check that the context cancellation results in the expected
@@ -1128,7 +1132,7 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
1128
1132
// htlc fail case before the htlc resume case.
1129
1133
sendPaymentInterceptAndCancel (
1130
1134
ht , ts , cpAB , routerrpc .ResolveHoldForwardAction_FAIL ,
1131
- lnrpc .Payment_FAILED ,
1135
+ lnrpc .Payment_FAILED , interceptor ,
1132
1136
)
1133
1137
1134
1138
// Finally, close channels.
@@ -1139,14 +1143,12 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
1139
1143
func sendPaymentInterceptAndCancel (ht * lntest.HarnessTest ,
1140
1144
ts * interceptorTestScenario , cpAB * lnrpc.ChannelPoint ,
1141
1145
interceptorAction routerrpc.ResolveHoldForwardAction ,
1142
- expectedPaymentStatus lnrpc.Payment_PaymentStatus ) {
1146
+ expectedPaymentStatus lnrpc.Payment_PaymentStatus ,
1147
+ interceptor rpc.InterceptorClient ) {
1143
1148
1144
1149
// Prepare the test cases.
1145
1150
alice , bob , carol := ts .alice , ts .bob , ts .carol
1146
1151
1147
- // Connect the interceptor.
1148
- interceptor , cancelInterceptor := bob .RPC .HtlcInterceptor ()
1149
-
1150
1152
// Prepare the test cases.
1151
1153
addResponse := carol .RPC .AddInvoice (& lnrpc.Invoice {
1152
1154
ValueMsat : 1000 ,
@@ -1208,9 +1210,6 @@ func sendPaymentInterceptAndCancel(ht *lntest.HarnessTest,
1208
1210
// should've been made, and we observe FAILURE_REASON_CANCELED.
1209
1211
expectedReason := lnrpc .PaymentFailureReason_FAILURE_REASON_CANCELED
1210
1212
ht .AssertPaymentFailureReason (alice , preimage , expectedReason )
1211
-
1212
- // Cancel the context, which will disconnect the above interceptor.
1213
- cancelInterceptor ()
1214
1213
}
1215
1214
1216
1215
// testSendToRouteFailHTLCTimeout is similar to
0 commit comments