From d4fdf8b94e69e19bef3944df03b242fb8666e46d Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Tue, 9 Jan 2024 20:33:36 +1300 Subject: [PATCH] interactive-tx: avoid creating PSBT wrappers for input UTXOs Changelog-None Signed-off-by: Jon Griffiths --- common/interactivetx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/interactivetx.c b/common/interactivetx.c index 9c249e646..5b7a772d6 100644 --- a/common/interactivetx.c +++ b/common/interactivetx.c @@ -459,7 +459,7 @@ char *process_interactivetx_updates(const tal_t *ctx, /* Convert tx_bytes to a tx! */ len = tal_bytelen(tx_bytes); - tx = pull_bitcoin_tx(ctx, &tx_bytes, &len); + tx = pull_bitcoin_tx_only(ctx, &tx_bytes, &len); if (!tx || len != 0) return tal_fmt(ctx, "Invalid tx sent. len: %d",