@@ -3992,6 +3992,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
3992
3992
char * error ;
3993
3993
u32 chan_output_index , splice_funding_index ;
3994
3994
struct wally_psbt_output * new_chan_output ;
3995
+ struct wally_psbt * psbt ;
3995
3996
struct inflight * new_inflight ;
3996
3997
struct bitcoin_txid current_psbt_txid ;
3997
3998
struct amount_sat both_amount ;
@@ -4028,29 +4029,31 @@ static void splice_initiator_user_finalized(struct peer *peer)
4028
4029
4029
4030
check_tx_abort (peer , abort_msg );
4030
4031
4032
+ psbt = clone_psbt (tmpctx , peer -> splicing -> current_psbt );
4033
+
4031
4034
/* With pause_when_complete fase, this assert should never fail */
4032
4035
assert (peer -> splicing -> received_tx_complete );
4033
4036
peer -> splicing -> sent_tx_complete = true;
4034
4037
4035
- psbt_sort_by_serial_id (ictx -> current_psbt );
4038
+ psbt_sort_by_serial_id (psbt );
4036
4039
4037
- new_chan_output = find_channel_output (peer , ictx -> current_psbt ,
4040
+ new_chan_output = find_channel_output (peer , psbt ,
4038
4041
& chan_output_index ,
4039
4042
& peer -> splicing -> remote_funding_pubkey );
4040
4043
4041
- splice_funding_index = find_channel_funding_input (ictx -> current_psbt ,
4044
+ splice_funding_index = find_channel_funding_input (psbt ,
4042
4045
& peer -> channel -> funding );
4043
4046
4044
- both_amount = check_balances (peer , our_role , ictx -> current_psbt ,
4047
+ both_amount = check_balances (peer , our_role , psbt ,
4045
4048
chan_output_index , splice_funding_index );
4046
4049
new_chan_output -> amount = both_amount .satoshis ; /* Raw: type conv */
4047
4050
4048
- psbt_elements_normalize_fees (ictx -> current_psbt );
4051
+ psbt_elements_normalize_fees (psbt );
4049
4052
4050
4053
status_debug ("Splice adding inflight: %s" ,
4051
- fmt_wally_psbt (tmpctx , ictx -> current_psbt ));
4054
+ fmt_wally_psbt (tmpctx , psbt ));
4052
4055
4053
- psbt_txid (tmpctx , ictx -> current_psbt , & current_psbt_txid , NULL );
4056
+ psbt_txid (tmpctx , psbt , & current_psbt_txid , NULL );
4054
4057
4055
4058
outmsg = towire_channeld_add_inflight (tmpctx ,
4056
4059
& peer -> splicing -> remote_funding_pubkey ,
@@ -4059,7 +4062,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
4059
4062
peer -> splicing -> feerate_per_kw ,
4060
4063
amount_sat (new_chan_output -> amount ),
4061
4064
peer -> splicing -> opener_relative ,
4062
- ictx -> current_psbt ,
4065
+ clone_psbt ( tmpctx , psbt ) ,
4063
4066
true,
4064
4067
peer -> splicing -> force_sign_first );
4065
4068
@@ -4068,7 +4071,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
4068
4071
4069
4072
new_inflight = inflights_new (peer );
4070
4073
4071
- psbt_txid (tmpctx , ictx -> current_psbt , & new_inflight -> outpoint .txid ,
4074
+ psbt_txid (tmpctx , psbt , & new_inflight -> outpoint .txid ,
4072
4075
NULL );
4073
4076
new_inflight -> remote_funding = peer -> splicing -> remote_funding_pubkey ;
4074
4077
new_inflight -> outpoint .n = chan_output_index ;
@@ -4084,7 +4087,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
4084
4087
* normal in-memory copy of the psbt: peer->splicing/ictx->current_psbt.
4085
4088
* Since we have to support using the inflight psbt anyway, we default
4086
4089
* 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
4088
4091
4089
4092
current_push_val = relative_splice_balance_fundee (peer , our_role ,
4090
4093
new_inflight -> psbt ,
0 commit comments