We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df6dcaf commit 8c80dd9Copy full SHA for 8c80dd9
contrib/remote_hsmd/proxy.cc
@@ -712,7 +712,7 @@ proxy_stat proxy_handle_sign_withdrawal_tx(
712
tal_wally_end(tal_steal(psbt, tx));
713
714
715
- SignFundingTxRequest req;
+ SignOnchainTxRequest req;
716
marshal_node_id(&self_id, req.mutable_node_id());
717
718
// Serialize the tx we modified above which includes witscripts.
@@ -746,8 +746,8 @@ proxy_stat proxy_handle_sign_withdrawal_tx(
746
}
747
748
ClientContext context;
749
- SignFundingTxReply rsp;
750
- Status status = stub->SignFundingTx(&context, req, &rsp);
+ SignOnchainTxReply rsp;
+ Status status = stub->SignOnchainTx(&context, req, &rsp);
751
if (status.ok()) {
752
unmarshal_witnesses(rsp.witnesses(), o_wits);
753
STATUS_DEBUG("%s:%d %s { \"self_id\":%s, \"witnesses\":%s }",
0 commit comments