@@ -1209,7 +1209,7 @@ proxy_stat proxy_handle_sign_delayed_payment_to_us(
1209
1209
);
1210
1210
1211
1211
last_message = " " ;
1212
- SignDelayedPaymentToUsRequest req;
1212
+ SignDelayedSweepRequest req;
1213
1213
marshal_node_id (&self_id, req.mutable_node_id ());
1214
1214
marshal_channel_nonce (peer_id, dbid, req.mutable_channel_nonce ());
1215
1215
req.set_input (0 );
@@ -1218,7 +1218,7 @@ proxy_stat proxy_handle_sign_delayed_payment_to_us(
1218
1218
1219
1219
ClientContext context;
1220
1220
SignatureReply rsp;
1221
- Status status = stub->SignDelayedPaymentToUs (&context, req, &rsp);
1221
+ Status status = stub->SignDelayedSweep (&context, req, &rsp);
1222
1222
if (status.ok ()) {
1223
1223
unmarshal_bitcoin_signature (rsp.signature (), o_sig);
1224
1224
STATUS_DEBUG (" %s:%d %s { \" self_id\" :%s, \" sig\" :%s }" ,
@@ -1257,7 +1257,7 @@ proxy_stat proxy_handle_sign_remote_htlc_to_us(
1257
1257
);
1258
1258
1259
1259
last_message = " " ;
1260
- SignCounterpartyHTLCToUsRequest req;
1260
+ SignCounterpartyHTLCSweepRequest req;
1261
1261
marshal_node_id (&self_id, req.mutable_node_id ());
1262
1262
marshal_channel_nonce (peer_id, dbid, req.mutable_channel_nonce ());
1263
1263
req.set_input (0 );
@@ -1267,7 +1267,7 @@ proxy_stat proxy_handle_sign_remote_htlc_to_us(
1267
1267
1268
1268
ClientContext context;
1269
1269
SignatureReply rsp;
1270
- Status status = stub->SignCounterpartyHTLCToUs (&context, req, &rsp);
1270
+ Status status = stub->SignCounterpartyHTLCSweep (&context, req, &rsp);
1271
1271
if (status.ok ()) {
1272
1272
unmarshal_bitcoin_signature (rsp.signature (), o_sig);
1273
1273
STATUS_DEBUG (" %s:%d %s { \" self_id\" :%s, \" sig\" :%s }" ,
@@ -1309,7 +1309,7 @@ proxy_stat proxy_handle_sign_penalty_to_us(
1309
1309
);
1310
1310
1311
1311
last_message = " " ;
1312
- SignJusticeTxToUsRequest req;
1312
+ SignJusticeSweepRequest req;
1313
1313
marshal_node_id (&self_id, req.mutable_node_id ());
1314
1314
marshal_channel_nonce (peer_id, dbid, req.mutable_channel_nonce ());
1315
1315
marshal_secret (revocation_secret, req.mutable_revocation_secret ());
@@ -1318,7 +1318,7 @@ proxy_stat proxy_handle_sign_penalty_to_us(
1318
1318
1319
1319
ClientContext context;
1320
1320
SignatureReply rsp;
1321
- Status status = stub->SignJusticeTxToUs (&context, req, &rsp);
1321
+ Status status = stub->SignJusticeSweep (&context, req, &rsp);
1322
1322
if (status.ok ()) {
1323
1323
unmarshal_bitcoin_signature (rsp.signature (), o_sig);
1324
1324
STATUS_DEBUG (" %s:%d %s { \" self_id\" :%s, \" sig\" :%s }" ,
0 commit comments