File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -11947,6 +11947,7 @@ where
11947
11947
user_channel_id: self.context.user_id,
11948
11948
funding_txo: None,
11949
11949
channel_type: None,
11950
+ // FIXME: Populate these from funding_negotiation_context?
11950
11951
contributed_inputs: Vec::new(),
11951
11952
contributed_outputs: Vec::new(),
11952
11953
};
@@ -11987,12 +11988,12 @@ where
11987
11988
user_channel_id: self.context.user_id,
11988
11989
funding_txo: splice_funding.get_funding_txo().map(|txo| txo.into_bitcoin_outpoint()),
11989
11990
channel_type: Some(splice_funding.get_channel_type().clone()),
11990
- contributed_inputs: Vec::new() ,
11991
- contributed_outputs: Vec::new() ,
11991
+ contributed_inputs: err.contributed_inputs ,
11992
+ contributed_outputs: err.contributed_outputs ,
11992
11993
};
11993
11994
let channel_error = ChannelError::WarnAndDisconnect(format!(
11994
11995
"Failed to start interactive transaction construction, {:?}",
11995
- err
11996
+ err.reason
11996
11997
));
11997
11998
(channel_error, splice_failed)
11998
11999
})?;
You can’t perform that action at this time.
0 commit comments