Skip to content

Commit

Permalink
signpsbt: update to new signpsbt RPC
Browse files Browse the repository at this point in the history
Update the use of signpsbt to proposed update on CLN.
  • Loading branch information
ddustin committed Nov 10, 2023
1 parent a8d4dcf commit e58d9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lnprototest/clightning/clightning.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def _run_rbf(runner: Runner, conn: Conn) -> Dict[str, Any]:
# Run until they're done sending us updates
while not update["commitments_secured"]:
update = runner.rpc.openchannel_update(channel_id, update["psbt"])
signed_psbt = runner.rpc.signpsbt(update["psbt"])["signed_psbt"]
signed_psbt = runner.rpc.signpsbt(update["psbt"], unsafe_sign_all=True)["signed_psbt"]
return runner.rpc.openchannel_signed(channel_id, signed_psbt)

def _done(fut: Any) -> None:
Expand Down

0 comments on commit e58d9e3

Please sign in to comment.