Skip to content

Commit 8907321

Browse files
committed
Test commit for CI
1 parent 463fd96 commit 8907321

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

channeld/channeld.c

+13-10
Original file line numberDiff line numberDiff line change
@@ -3992,6 +3992,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
39923992
char *error;
39933993
u32 chan_output_index, splice_funding_index;
39943994
struct wally_psbt_output *new_chan_output;
3995+
struct wally_psbt *psbt;
39953996
struct inflight *new_inflight;
39963997
struct bitcoin_txid current_psbt_txid;
39973998
struct amount_sat both_amount;
@@ -4028,29 +4029,31 @@ static void splice_initiator_user_finalized(struct peer *peer)
40284029

40294030
check_tx_abort(peer, abort_msg);
40304031

4032+
psbt = clone_psbt(tmpctx, peer->splicing->current_psbt);
4033+
40314034
/* With pause_when_complete fase, this assert should never fail */
40324035
assert(peer->splicing->received_tx_complete);
40334036
peer->splicing->sent_tx_complete = true;
40344037

4035-
psbt_sort_by_serial_id(ictx->current_psbt);
4038+
psbt_sort_by_serial_id(psbt);
40364039

4037-
new_chan_output = find_channel_output(peer, ictx->current_psbt,
4040+
new_chan_output = find_channel_output(peer, psbt,
40384041
&chan_output_index,
40394042
&peer->splicing->remote_funding_pubkey);
40404043

4041-
splice_funding_index = find_channel_funding_input(ictx->current_psbt,
4044+
splice_funding_index = find_channel_funding_input(psbt,
40424045
&peer->channel->funding);
40434046

4044-
both_amount = check_balances(peer, our_role, ictx->current_psbt,
4047+
both_amount = check_balances(peer, our_role, psbt,
40454048
chan_output_index, splice_funding_index);
40464049
new_chan_output->amount = both_amount.satoshis; /* Raw: type conv */
40474050

4048-
psbt_elements_normalize_fees(ictx->current_psbt);
4051+
psbt_elements_normalize_fees(psbt);
40494052

40504053
status_debug("Splice adding inflight: %s",
4051-
fmt_wally_psbt(tmpctx, ictx->current_psbt));
4054+
fmt_wally_psbt(tmpctx, psbt));
40524055

4053-
psbt_txid(tmpctx, ictx->current_psbt, &current_psbt_txid, NULL);
4056+
psbt_txid(tmpctx, psbt, &current_psbt_txid, NULL);
40544057

40554058
outmsg = towire_channeld_add_inflight(tmpctx,
40564059
&peer->splicing->remote_funding_pubkey,
@@ -4059,7 +4062,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
40594062
peer->splicing->feerate_per_kw,
40604063
amount_sat(new_chan_output->amount),
40614064
peer->splicing->opener_relative,
4062-
ictx->current_psbt,
4065+
clone_psbt(tmpctx, psbt),
40634066
true,
40644067
peer->splicing->force_sign_first);
40654068

@@ -4068,7 +4071,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
40684071

40694072
new_inflight = inflights_new(peer);
40704073

4071-
psbt_txid(tmpctx, ictx->current_psbt, &new_inflight->outpoint.txid,
4074+
psbt_txid(tmpctx, psbt, &new_inflight->outpoint.txid,
40724075
NULL);
40734076
new_inflight->remote_funding = peer->splicing->remote_funding_pubkey;
40744077
new_inflight->outpoint.n = chan_output_index;
@@ -4084,7 +4087,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
40844087
* normal in-memory copy of the psbt: peer->splicing/ictx->current_psbt.
40854088
* Since we have to support using the inflight psbt anyway, we default
40864089
* to it. */
4087-
new_inflight->psbt = clone_psbt(new_inflight, ictx->current_psbt);
4090+
new_inflight->psbt = clone_psbt(new_inflight, psbt); // wally_psbt_clone_alloc fails here
40884091

40894092
current_push_val = relative_splice_balance_fundee(peer, our_role,
40904093
new_inflight->psbt,

common/interactivetx.c

-3
Original file line numberDiff line numberDiff line change
@@ -391,9 +391,6 @@ char *process_interactivetx_updates(const tal_t *ctx,
391391
if (received_tx_complete)
392392
they_complete = *received_tx_complete;
393393

394-
/* Build change_set and handle PSBT variables */
395-
ictx->change_set = tal_free(ictx->change_set);
396-
397394
/* Call next_update_fn or default to 'desired_psbt' */
398395
next_psbt = ictx->next_update_fn(ictx, ictx);
399396

0 commit comments

Comments
 (0)