From 1b3751552886907b38ce195c21197a95033fbfcb Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Tue, 9 Jan 2024 20:36:58 +1300 Subject: [PATCH] dualfund: avoid creating PSBT wrappers for input UTXOs Changelog-None Signed-off-by: Jon Griffiths --- openingd/dualopend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openingd/dualopend.c b/openingd/dualopend.c index 80ca85f01..cf7051515 100644 --- a/openingd/dualopend.c +++ b/openingd/dualopend.c @@ -1784,7 +1784,7 @@ static bool run_tx_interactive(struct state *state, /* Convert tx_bytes to a tx! */ len = tal_bytelen(tx_bytes); - tx = pull_bitcoin_tx(tmpctx, &tx_bytes, &len); + tx = pull_bitcoin_tx_only(tmpctx, &tx_bytes, &len); if (!tx || len != 0) { open_abort(state, "%s", "Invalid tx sent."); return false;