Skip to content

Commit

Permalink
Renamed SignFundingTx to SignOnchainTx
Browse files Browse the repository at this point in the history
  • Loading branch information
ksedgwic committed Oct 15, 2021
1 parent 4bd9d38 commit b763197
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/remote_hsmd/proxy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ proxy_stat proxy_handle_sign_withdrawal_tx(
tal_wally_end(tal_steal(psbt, tx));


SignFundingTxRequest req;
SignOnchainTxRequest req;
marshal_node_id(&self_id, req.mutable_node_id());

// Serialize the tx we modified above which includes witscripts.
Expand Down Expand Up @@ -742,8 +742,8 @@ proxy_stat proxy_handle_sign_withdrawal_tx(
}

ClientContext context;
SignFundingTxReply rsp;
Status status = stub->SignFundingTx(&context, req, &rsp);
SignOnchainTxReply rsp;
Status status = stub->SignOnchainTx(&context, req, &rsp);
if (status.ok()) {
unmarshal_witnesses(rsp.witnesses(), o_wits);
STATUS_DEBUG("%s:%d %s { \"self_id\":%s, \"witnesses\":%s }",
Expand Down

0 comments on commit b763197

Please sign in to comment.