Merge pull request #12 from TheBlueMatt/2021-04-incl-persister
[ldk-c-bindings] / lightning-c-bindings / src / lightning / ln / chan_utils.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! Various utilities for building scripts and deriving keys related to channels. These are
10 //! largely of interest for those implementing chain::keysinterface::Sign message signing by hand.
11
12 use std::ffi::c_void;
13 use bitcoin::hashes::Hash;
14 use crate::c_types::*;
15
16 /// Build the commitment secret from the seed and the commitment number
17 #[no_mangle]
18 pub extern "C" fn build_commitment_secret(commitment_seed: *const [u8; 32], mut idx: u64) -> crate::c_types::ThirtyTwoBytes {
19         let mut ret = lightning::ln::chan_utils::build_commitment_secret(unsafe { &*commitment_seed}, idx);
20         crate::c_types::ThirtyTwoBytes { data: ret }
21 }
22
23 /// Derives a per-commitment-transaction private key (eg an htlc key or delayed_payment key)
24 /// from the base secret and the per_commitment_point.
25 ///
26 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
27 /// generated (ie our own).
28 #[no_mangle]
29 pub extern "C" fn derive_private_key(mut per_commitment_point: crate::c_types::PublicKey, base_secret: *const [u8; 32]) -> crate::c_types::derived::CResult_SecretKeyErrorZ {
30         let mut ret = lightning::ln::chan_utils::derive_private_key(secp256k1::SECP256K1, &per_commitment_point.into_rust(), &::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *base_secret}[..]).unwrap());
31         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::SecretKey::from_rust(o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::Secp256k1Error::from_rust(e) }).into() };
32         local_ret
33 }
34
35 /// Derives a per-commitment-transaction public key (eg an htlc key or a delayed_payment key)
36 /// from the base point and the per_commitment_key. This is the public equivalent of
37 /// derive_private_key - using only public keys to derive a public key instead of private keys.
38 ///
39 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
40 /// generated (ie our own).
41 #[no_mangle]
42 pub extern "C" fn derive_public_key(mut per_commitment_point: crate::c_types::PublicKey, mut base_point: crate::c_types::PublicKey) -> crate::c_types::derived::CResult_PublicKeyErrorZ {
43         let mut ret = lightning::ln::chan_utils::derive_public_key(secp256k1::SECP256K1, &per_commitment_point.into_rust(), &base_point.into_rust());
44         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::PublicKey::from_rust(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::Secp256k1Error::from_rust(e) }).into() };
45         local_ret
46 }
47
48 /// Derives a per-commitment-transaction revocation key from its constituent parts.
49 ///
50 /// Only the cheating participant owns a valid witness to propagate a revoked 
51 /// commitment transaction, thus per_commitment_secret always come from cheater
52 /// and revocation_base_secret always come from punisher, which is the broadcaster
53 /// of the transaction spending with this key knowledge.
54 ///
55 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
56 /// generated (ie our own).
57 #[no_mangle]
58 pub extern "C" fn derive_private_revocation_key(per_commitment_secret: *const [u8; 32], countersignatory_revocation_base_secret: *const [u8; 32]) -> crate::c_types::derived::CResult_SecretKeyErrorZ {
59         let mut ret = lightning::ln::chan_utils::derive_private_revocation_key(secp256k1::SECP256K1, &::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *per_commitment_secret}[..]).unwrap(), &::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *countersignatory_revocation_base_secret}[..]).unwrap());
60         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::SecretKey::from_rust(o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::Secp256k1Error::from_rust(e) }).into() };
61         local_ret
62 }
63
64 /// Derives a per-commitment-transaction revocation public key from its constituent parts. This is
65 /// the public equivalend of derive_private_revocation_key - using only public keys to derive a
66 /// public key instead of private keys.
67 ///
68 /// Only the cheating participant owns a valid witness to propagate a revoked 
69 /// commitment transaction, thus per_commitment_point always come from cheater
70 /// and revocation_base_point always come from punisher, which is the broadcaster
71 /// of the transaction spending with this key knowledge.
72 ///
73 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
74 /// generated (ie our own).
75 #[no_mangle]
76 pub extern "C" fn derive_public_revocation_key(mut per_commitment_point: crate::c_types::PublicKey, mut countersignatory_revocation_base_point: crate::c_types::PublicKey) -> crate::c_types::derived::CResult_PublicKeyErrorZ {
77         let mut ret = lightning::ln::chan_utils::derive_public_revocation_key(secp256k1::SECP256K1, &per_commitment_point.into_rust(), &countersignatory_revocation_base_point.into_rust());
78         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::PublicKey::from_rust(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::Secp256k1Error::from_rust(e) }).into() };
79         local_ret
80 }
81
82
83 use lightning::ln::chan_utils::TxCreationKeys as nativeTxCreationKeysImport;
84 type nativeTxCreationKeys = nativeTxCreationKeysImport;
85
86 /// The set of public keys which are used in the creation of one commitment transaction.
87 /// These are derived from the channel base keys and per-commitment data.
88 ///
89 /// A broadcaster key is provided from potential broadcaster of the computed transaction.
90 /// A countersignatory key is coming from a protocol participant unable to broadcast the
91 /// transaction.
92 ///
93 /// These keys are assumed to be good, either because the code derived them from
94 /// channel basepoints via the new function, or they were obtained via
95 /// CommitmentTransaction.trust().keys() because we trusted the source of the
96 /// pre-calculated keys.
97 #[must_use]
98 #[repr(C)]
99 pub struct TxCreationKeys {
100         /// A pointer to the opaque Rust object.
101
102         /// Nearly everywhere, inner must be non-null, however in places where
103         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
104         pub inner: *mut nativeTxCreationKeys,
105         /// Indicates that this is the only struct which contains the same pointer.
106
107         /// Rust functions which take ownership of an object provided via an argument require
108         /// this to be true and invalidate the object pointed to by inner.
109         pub is_owned: bool,
110 }
111
112 impl Drop for TxCreationKeys {
113         fn drop(&mut self) {
114                 if self.is_owned && !<*mut nativeTxCreationKeys>::is_null(self.inner) {
115                         let _ = unsafe { Box::from_raw(self.inner) };
116                 }
117         }
118 }
119 /// Frees any resources used by the TxCreationKeys, if is_owned is set and inner is non-NULL.
120 #[no_mangle]
121 pub extern "C" fn TxCreationKeys_free(this_obj: TxCreationKeys) { }
122 #[allow(unused)]
123 /// Used only if an object of this type is returned as a trait impl by a method
124 extern "C" fn TxCreationKeys_free_void(this_ptr: *mut c_void) {
125         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeTxCreationKeys); }
126 }
127 #[allow(unused)]
128 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
129 impl TxCreationKeys {
130         pub(crate) fn take_inner(mut self) -> *mut nativeTxCreationKeys {
131                 assert!(self.is_owned);
132                 let ret = self.inner;
133                 self.inner = std::ptr::null_mut();
134                 ret
135         }
136 }
137 /// The broadcaster's per-commitment public key which was used to derive the other keys.
138 #[no_mangle]
139 pub extern "C" fn TxCreationKeys_get_per_commitment_point(this_ptr: &TxCreationKeys) -> crate::c_types::PublicKey {
140         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.per_commitment_point;
141         crate::c_types::PublicKey::from_rust(&(*inner_val))
142 }
143 /// The broadcaster's per-commitment public key which was used to derive the other keys.
144 #[no_mangle]
145 pub extern "C" fn TxCreationKeys_set_per_commitment_point(this_ptr: &mut TxCreationKeys, mut val: crate::c_types::PublicKey) {
146         unsafe { &mut *this_ptr.inner }.per_commitment_point = val.into_rust();
147 }
148 /// The revocation key which is used to allow the broadcaster of the commitment
149 /// transaction to provide their counterparty the ability to punish them if they broadcast
150 /// an old state.
151 #[no_mangle]
152 pub extern "C" fn TxCreationKeys_get_revocation_key(this_ptr: &TxCreationKeys) -> crate::c_types::PublicKey {
153         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_key;
154         crate::c_types::PublicKey::from_rust(&(*inner_val))
155 }
156 /// The revocation key which is used to allow the broadcaster of the commitment
157 /// transaction to provide their counterparty the ability to punish them if they broadcast
158 /// an old state.
159 #[no_mangle]
160 pub extern "C" fn TxCreationKeys_set_revocation_key(this_ptr: &mut TxCreationKeys, mut val: crate::c_types::PublicKey) {
161         unsafe { &mut *this_ptr.inner }.revocation_key = val.into_rust();
162 }
163 /// Broadcaster's HTLC Key
164 #[no_mangle]
165 pub extern "C" fn TxCreationKeys_get_broadcaster_htlc_key(this_ptr: &TxCreationKeys) -> crate::c_types::PublicKey {
166         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.broadcaster_htlc_key;
167         crate::c_types::PublicKey::from_rust(&(*inner_val))
168 }
169 /// Broadcaster's HTLC Key
170 #[no_mangle]
171 pub extern "C" fn TxCreationKeys_set_broadcaster_htlc_key(this_ptr: &mut TxCreationKeys, mut val: crate::c_types::PublicKey) {
172         unsafe { &mut *this_ptr.inner }.broadcaster_htlc_key = val.into_rust();
173 }
174 /// Countersignatory's HTLC Key
175 #[no_mangle]
176 pub extern "C" fn TxCreationKeys_get_countersignatory_htlc_key(this_ptr: &TxCreationKeys) -> crate::c_types::PublicKey {
177         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.countersignatory_htlc_key;
178         crate::c_types::PublicKey::from_rust(&(*inner_val))
179 }
180 /// Countersignatory's HTLC Key
181 #[no_mangle]
182 pub extern "C" fn TxCreationKeys_set_countersignatory_htlc_key(this_ptr: &mut TxCreationKeys, mut val: crate::c_types::PublicKey) {
183         unsafe { &mut *this_ptr.inner }.countersignatory_htlc_key = val.into_rust();
184 }
185 /// Broadcaster's Payment Key (which isn't allowed to be spent from for some delay)
186 #[no_mangle]
187 pub extern "C" fn TxCreationKeys_get_broadcaster_delayed_payment_key(this_ptr: &TxCreationKeys) -> crate::c_types::PublicKey {
188         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.broadcaster_delayed_payment_key;
189         crate::c_types::PublicKey::from_rust(&(*inner_val))
190 }
191 /// Broadcaster's Payment Key (which isn't allowed to be spent from for some delay)
192 #[no_mangle]
193 pub extern "C" fn TxCreationKeys_set_broadcaster_delayed_payment_key(this_ptr: &mut TxCreationKeys, mut val: crate::c_types::PublicKey) {
194         unsafe { &mut *this_ptr.inner }.broadcaster_delayed_payment_key = val.into_rust();
195 }
196 /// Constructs a new TxCreationKeys given each field
197 #[must_use]
198 #[no_mangle]
199 pub extern "C" fn TxCreationKeys_new(mut per_commitment_point_arg: crate::c_types::PublicKey, mut revocation_key_arg: crate::c_types::PublicKey, mut broadcaster_htlc_key_arg: crate::c_types::PublicKey, mut countersignatory_htlc_key_arg: crate::c_types::PublicKey, mut broadcaster_delayed_payment_key_arg: crate::c_types::PublicKey) -> TxCreationKeys {
200         TxCreationKeys { inner: Box::into_raw(Box::new(nativeTxCreationKeys {
201                 per_commitment_point: per_commitment_point_arg.into_rust(),
202                 revocation_key: revocation_key_arg.into_rust(),
203                 broadcaster_htlc_key: broadcaster_htlc_key_arg.into_rust(),
204                 countersignatory_htlc_key: countersignatory_htlc_key_arg.into_rust(),
205                 broadcaster_delayed_payment_key: broadcaster_delayed_payment_key_arg.into_rust(),
206         })), is_owned: true }
207 }
208 impl Clone for TxCreationKeys {
209         fn clone(&self) -> Self {
210                 Self {
211                         inner: if <*mut nativeTxCreationKeys>::is_null(self.inner) { std::ptr::null_mut() } else {
212                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
213                         is_owned: true,
214                 }
215         }
216 }
217 #[allow(unused)]
218 /// Used only if an object of this type is returned as a trait impl by a method
219 pub(crate) extern "C" fn TxCreationKeys_clone_void(this_ptr: *const c_void) -> *mut c_void {
220         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeTxCreationKeys)).clone() })) as *mut c_void
221 }
222 #[no_mangle]
223 /// Creates a copy of the TxCreationKeys
224 pub extern "C" fn TxCreationKeys_clone(orig: &TxCreationKeys) -> TxCreationKeys {
225         orig.clone()
226 }
227 #[no_mangle]
228 /// Serialize the TxCreationKeys object into a byte array which can be read by TxCreationKeys_read
229 pub extern "C" fn TxCreationKeys_write(obj: &TxCreationKeys) -> crate::c_types::derived::CVec_u8Z {
230         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
231 }
232 #[no_mangle]
233 pub(crate) extern "C" fn TxCreationKeys_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
234         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeTxCreationKeys) })
235 }
236 #[no_mangle]
237 /// Read a TxCreationKeys from a byte array, created by TxCreationKeys_write
238 pub extern "C" fn TxCreationKeys_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_TxCreationKeysDecodeErrorZ {
239         let res = crate::c_types::deserialize_obj(ser);
240         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::TxCreationKeys { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
241         local_res
242 }
243
244 use lightning::ln::chan_utils::ChannelPublicKeys as nativeChannelPublicKeysImport;
245 type nativeChannelPublicKeys = nativeChannelPublicKeysImport;
246
247 /// One counterparty's public keys which do not change over the life of a channel.
248 #[must_use]
249 #[repr(C)]
250 pub struct ChannelPublicKeys {
251         /// A pointer to the opaque Rust object.
252
253         /// Nearly everywhere, inner must be non-null, however in places where
254         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
255         pub inner: *mut nativeChannelPublicKeys,
256         /// Indicates that this is the only struct which contains the same pointer.
257
258         /// Rust functions which take ownership of an object provided via an argument require
259         /// this to be true and invalidate the object pointed to by inner.
260         pub is_owned: bool,
261 }
262
263 impl Drop for ChannelPublicKeys {
264         fn drop(&mut self) {
265                 if self.is_owned && !<*mut nativeChannelPublicKeys>::is_null(self.inner) {
266                         let _ = unsafe { Box::from_raw(self.inner) };
267                 }
268         }
269 }
270 /// Frees any resources used by the ChannelPublicKeys, if is_owned is set and inner is non-NULL.
271 #[no_mangle]
272 pub extern "C" fn ChannelPublicKeys_free(this_obj: ChannelPublicKeys) { }
273 #[allow(unused)]
274 /// Used only if an object of this type is returned as a trait impl by a method
275 extern "C" fn ChannelPublicKeys_free_void(this_ptr: *mut c_void) {
276         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelPublicKeys); }
277 }
278 #[allow(unused)]
279 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
280 impl ChannelPublicKeys {
281         pub(crate) fn take_inner(mut self) -> *mut nativeChannelPublicKeys {
282                 assert!(self.is_owned);
283                 let ret = self.inner;
284                 self.inner = std::ptr::null_mut();
285                 ret
286         }
287 }
288 /// The public key which is used to sign all commitment transactions, as it appears in the
289 /// on-chain channel lock-in 2-of-2 multisig output.
290 #[no_mangle]
291 pub extern "C" fn ChannelPublicKeys_get_funding_pubkey(this_ptr: &ChannelPublicKeys) -> crate::c_types::PublicKey {
292         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_pubkey;
293         crate::c_types::PublicKey::from_rust(&(*inner_val))
294 }
295 /// The public key which is used to sign all commitment transactions, as it appears in the
296 /// on-chain channel lock-in 2-of-2 multisig output.
297 #[no_mangle]
298 pub extern "C" fn ChannelPublicKeys_set_funding_pubkey(this_ptr: &mut ChannelPublicKeys, mut val: crate::c_types::PublicKey) {
299         unsafe { &mut *this_ptr.inner }.funding_pubkey = val.into_rust();
300 }
301 /// The base point which is used (with derive_public_revocation_key) to derive per-commitment
302 /// revocation keys. This is combined with the per-commitment-secret generated by the
303 /// counterparty to create a secret which the counterparty can reveal to revoke previous
304 /// states.
305 #[no_mangle]
306 pub extern "C" fn ChannelPublicKeys_get_revocation_basepoint(this_ptr: &ChannelPublicKeys) -> crate::c_types::PublicKey {
307         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_basepoint;
308         crate::c_types::PublicKey::from_rust(&(*inner_val))
309 }
310 /// The base point which is used (with derive_public_revocation_key) to derive per-commitment
311 /// revocation keys. This is combined with the per-commitment-secret generated by the
312 /// counterparty to create a secret which the counterparty can reveal to revoke previous
313 /// states.
314 #[no_mangle]
315 pub extern "C" fn ChannelPublicKeys_set_revocation_basepoint(this_ptr: &mut ChannelPublicKeys, mut val: crate::c_types::PublicKey) {
316         unsafe { &mut *this_ptr.inner }.revocation_basepoint = val.into_rust();
317 }
318 /// The public key on which the non-broadcaster (ie the countersignatory) receives an immediately
319 /// spendable primary channel balance on the broadcaster's commitment transaction. This key is
320 /// static across every commitment transaction.
321 #[no_mangle]
322 pub extern "C" fn ChannelPublicKeys_get_payment_point(this_ptr: &ChannelPublicKeys) -> crate::c_types::PublicKey {
323         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_point;
324         crate::c_types::PublicKey::from_rust(&(*inner_val))
325 }
326 /// The public key on which the non-broadcaster (ie the countersignatory) receives an immediately
327 /// spendable primary channel balance on the broadcaster's commitment transaction. This key is
328 /// static across every commitment transaction.
329 #[no_mangle]
330 pub extern "C" fn ChannelPublicKeys_set_payment_point(this_ptr: &mut ChannelPublicKeys, mut val: crate::c_types::PublicKey) {
331         unsafe { &mut *this_ptr.inner }.payment_point = val.into_rust();
332 }
333 /// The base point which is used (with derive_public_key) to derive a per-commitment payment
334 /// public key which receives non-HTLC-encumbered funds which are only available for spending
335 /// after some delay (or can be claimed via the revocation path).
336 #[no_mangle]
337 pub extern "C" fn ChannelPublicKeys_get_delayed_payment_basepoint(this_ptr: &ChannelPublicKeys) -> crate::c_types::PublicKey {
338         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.delayed_payment_basepoint;
339         crate::c_types::PublicKey::from_rust(&(*inner_val))
340 }
341 /// The base point which is used (with derive_public_key) to derive a per-commitment payment
342 /// public key which receives non-HTLC-encumbered funds which are only available for spending
343 /// after some delay (or can be claimed via the revocation path).
344 #[no_mangle]
345 pub extern "C" fn ChannelPublicKeys_set_delayed_payment_basepoint(this_ptr: &mut ChannelPublicKeys, mut val: crate::c_types::PublicKey) {
346         unsafe { &mut *this_ptr.inner }.delayed_payment_basepoint = val.into_rust();
347 }
348 /// The base point which is used (with derive_public_key) to derive a per-commitment public key
349 /// which is used to encumber HTLC-in-flight outputs.
350 #[no_mangle]
351 pub extern "C" fn ChannelPublicKeys_get_htlc_basepoint(this_ptr: &ChannelPublicKeys) -> crate::c_types::PublicKey {
352         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_basepoint;
353         crate::c_types::PublicKey::from_rust(&(*inner_val))
354 }
355 /// The base point which is used (with derive_public_key) to derive a per-commitment public key
356 /// which is used to encumber HTLC-in-flight outputs.
357 #[no_mangle]
358 pub extern "C" fn ChannelPublicKeys_set_htlc_basepoint(this_ptr: &mut ChannelPublicKeys, mut val: crate::c_types::PublicKey) {
359         unsafe { &mut *this_ptr.inner }.htlc_basepoint = val.into_rust();
360 }
361 /// Constructs a new ChannelPublicKeys given each field
362 #[must_use]
363 #[no_mangle]
364 pub extern "C" fn ChannelPublicKeys_new(mut funding_pubkey_arg: crate::c_types::PublicKey, mut revocation_basepoint_arg: crate::c_types::PublicKey, mut payment_point_arg: crate::c_types::PublicKey, mut delayed_payment_basepoint_arg: crate::c_types::PublicKey, mut htlc_basepoint_arg: crate::c_types::PublicKey) -> ChannelPublicKeys {
365         ChannelPublicKeys { inner: Box::into_raw(Box::new(nativeChannelPublicKeys {
366                 funding_pubkey: funding_pubkey_arg.into_rust(),
367                 revocation_basepoint: revocation_basepoint_arg.into_rust(),
368                 payment_point: payment_point_arg.into_rust(),
369                 delayed_payment_basepoint: delayed_payment_basepoint_arg.into_rust(),
370                 htlc_basepoint: htlc_basepoint_arg.into_rust(),
371         })), is_owned: true }
372 }
373 impl Clone for ChannelPublicKeys {
374         fn clone(&self) -> Self {
375                 Self {
376                         inner: if <*mut nativeChannelPublicKeys>::is_null(self.inner) { std::ptr::null_mut() } else {
377                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
378                         is_owned: true,
379                 }
380         }
381 }
382 #[allow(unused)]
383 /// Used only if an object of this type is returned as a trait impl by a method
384 pub(crate) extern "C" fn ChannelPublicKeys_clone_void(this_ptr: *const c_void) -> *mut c_void {
385         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelPublicKeys)).clone() })) as *mut c_void
386 }
387 #[no_mangle]
388 /// Creates a copy of the ChannelPublicKeys
389 pub extern "C" fn ChannelPublicKeys_clone(orig: &ChannelPublicKeys) -> ChannelPublicKeys {
390         orig.clone()
391 }
392 #[no_mangle]
393 /// Serialize the ChannelPublicKeys object into a byte array which can be read by ChannelPublicKeys_read
394 pub extern "C" fn ChannelPublicKeys_write(obj: &ChannelPublicKeys) -> crate::c_types::derived::CVec_u8Z {
395         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
396 }
397 #[no_mangle]
398 pub(crate) extern "C" fn ChannelPublicKeys_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
399         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelPublicKeys) })
400 }
401 #[no_mangle]
402 /// Read a ChannelPublicKeys from a byte array, created by ChannelPublicKeys_write
403 pub extern "C" fn ChannelPublicKeys_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelPublicKeysDecodeErrorZ {
404         let res = crate::c_types::deserialize_obj(ser);
405         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
406         local_res
407 }
408 /// Create per-state keys from channel base points and the per-commitment point.
409 /// Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
410 #[must_use]
411 #[no_mangle]
412 pub extern "C" fn TxCreationKeys_derive_new(mut per_commitment_point: crate::c_types::PublicKey, mut broadcaster_delayed_payment_base: crate::c_types::PublicKey, mut broadcaster_htlc_base: crate::c_types::PublicKey, mut countersignatory_revocation_base: crate::c_types::PublicKey, mut countersignatory_htlc_base: crate::c_types::PublicKey) -> crate::c_types::derived::CResult_TxCreationKeysErrorZ {
413         let mut ret = lightning::ln::chan_utils::TxCreationKeys::derive_new(secp256k1::SECP256K1, &per_commitment_point.into_rust(), &broadcaster_delayed_payment_base.into_rust(), &broadcaster_htlc_base.into_rust(), &countersignatory_revocation_base.into_rust(), &countersignatory_htlc_base.into_rust());
414         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::TxCreationKeys { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::Secp256k1Error::from_rust(e) }).into() };
415         local_ret
416 }
417
418 /// Generate per-state keys from channel static keys.
419 /// Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
420 #[must_use]
421 #[no_mangle]
422 pub extern "C" fn TxCreationKeys_from_channel_static_keys(mut per_commitment_point: crate::c_types::PublicKey, broadcaster_keys: &crate::lightning::ln::chan_utils::ChannelPublicKeys, countersignatory_keys: &crate::lightning::ln::chan_utils::ChannelPublicKeys) -> crate::c_types::derived::CResult_TxCreationKeysErrorZ {
423         let mut ret = lightning::ln::chan_utils::TxCreationKeys::from_channel_static_keys(&per_commitment_point.into_rust(), unsafe { &*broadcaster_keys.inner }, unsafe { &*countersignatory_keys.inner }, secp256k1::SECP256K1);
424         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::TxCreationKeys { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::Secp256k1Error::from_rust(e) }).into() };
425         local_ret
426 }
427
428 /// The maximum length of a script returned by get_revokeable_redeemscript.
429
430 #[no_mangle]
431 pub static REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH: usize = lightning::ln::chan_utils::REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH;
432 /// A script either spendable by the revocation
433 /// key or the broadcaster_delayed_payment_key and satisfying the relative-locktime OP_CSV constrain.
434 /// Encumbering a `to_holder` output on a commitment transaction or 2nd-stage HTLC transactions.
435 #[no_mangle]
436 pub extern "C" fn get_revokeable_redeemscript(mut revocation_key: crate::c_types::PublicKey, mut contest_delay: u16, mut broadcaster_delayed_payment_key: crate::c_types::PublicKey) -> crate::c_types::derived::CVec_u8Z {
437         let mut ret = lightning::ln::chan_utils::get_revokeable_redeemscript(&revocation_key.into_rust(), contest_delay, &broadcaster_delayed_payment_key.into_rust());
438         ret.into_bytes().into()
439 }
440
441
442 use lightning::ln::chan_utils::HTLCOutputInCommitment as nativeHTLCOutputInCommitmentImport;
443 type nativeHTLCOutputInCommitment = nativeHTLCOutputInCommitmentImport;
444
445 /// Information about an HTLC as it appears in a commitment transaction
446 #[must_use]
447 #[repr(C)]
448 pub struct HTLCOutputInCommitment {
449         /// A pointer to the opaque Rust object.
450
451         /// Nearly everywhere, inner must be non-null, however in places where
452         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
453         pub inner: *mut nativeHTLCOutputInCommitment,
454         /// Indicates that this is the only struct which contains the same pointer.
455
456         /// Rust functions which take ownership of an object provided via an argument require
457         /// this to be true and invalidate the object pointed to by inner.
458         pub is_owned: bool,
459 }
460
461 impl Drop for HTLCOutputInCommitment {
462         fn drop(&mut self) {
463                 if self.is_owned && !<*mut nativeHTLCOutputInCommitment>::is_null(self.inner) {
464                         let _ = unsafe { Box::from_raw(self.inner) };
465                 }
466         }
467 }
468 /// Frees any resources used by the HTLCOutputInCommitment, if is_owned is set and inner is non-NULL.
469 #[no_mangle]
470 pub extern "C" fn HTLCOutputInCommitment_free(this_obj: HTLCOutputInCommitment) { }
471 #[allow(unused)]
472 /// Used only if an object of this type is returned as a trait impl by a method
473 extern "C" fn HTLCOutputInCommitment_free_void(this_ptr: *mut c_void) {
474         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeHTLCOutputInCommitment); }
475 }
476 #[allow(unused)]
477 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
478 impl HTLCOutputInCommitment {
479         pub(crate) fn take_inner(mut self) -> *mut nativeHTLCOutputInCommitment {
480                 assert!(self.is_owned);
481                 let ret = self.inner;
482                 self.inner = std::ptr::null_mut();
483                 ret
484         }
485 }
486 /// Whether the HTLC was \"offered\" (ie outbound in relation to this commitment transaction).
487 /// Note that this is not the same as whether it is ountbound *from us*. To determine that you
488 /// need to compare this value to whether the commitment transaction in question is that of
489 /// the counterparty or our own.
490 #[no_mangle]
491 pub extern "C" fn HTLCOutputInCommitment_get_offered(this_ptr: &HTLCOutputInCommitment) -> bool {
492         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.offered;
493         (*inner_val)
494 }
495 /// Whether the HTLC was \"offered\" (ie outbound in relation to this commitment transaction).
496 /// Note that this is not the same as whether it is ountbound *from us*. To determine that you
497 /// need to compare this value to whether the commitment transaction in question is that of
498 /// the counterparty or our own.
499 #[no_mangle]
500 pub extern "C" fn HTLCOutputInCommitment_set_offered(this_ptr: &mut HTLCOutputInCommitment, mut val: bool) {
501         unsafe { &mut *this_ptr.inner }.offered = val;
502 }
503 /// The value, in msat, of the HTLC. The value as it appears in the commitment transaction is
504 /// this divided by 1000.
505 #[no_mangle]
506 pub extern "C" fn HTLCOutputInCommitment_get_amount_msat(this_ptr: &HTLCOutputInCommitment) -> u64 {
507         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.amount_msat;
508         (*inner_val)
509 }
510 /// The value, in msat, of the HTLC. The value as it appears in the commitment transaction is
511 /// this divided by 1000.
512 #[no_mangle]
513 pub extern "C" fn HTLCOutputInCommitment_set_amount_msat(this_ptr: &mut HTLCOutputInCommitment, mut val: u64) {
514         unsafe { &mut *this_ptr.inner }.amount_msat = val;
515 }
516 /// The CLTV lock-time at which this HTLC expires.
517 #[no_mangle]
518 pub extern "C" fn HTLCOutputInCommitment_get_cltv_expiry(this_ptr: &HTLCOutputInCommitment) -> u32 {
519         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry;
520         (*inner_val)
521 }
522 /// The CLTV lock-time at which this HTLC expires.
523 #[no_mangle]
524 pub extern "C" fn HTLCOutputInCommitment_set_cltv_expiry(this_ptr: &mut HTLCOutputInCommitment, mut val: u32) {
525         unsafe { &mut *this_ptr.inner }.cltv_expiry = val;
526 }
527 /// The hash of the preimage which unlocks this HTLC.
528 #[no_mangle]
529 pub extern "C" fn HTLCOutputInCommitment_get_payment_hash(this_ptr: &HTLCOutputInCommitment) -> *const [u8; 32] {
530         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_hash;
531         &(*inner_val).0
532 }
533 /// The hash of the preimage which unlocks this HTLC.
534 #[no_mangle]
535 pub extern "C" fn HTLCOutputInCommitment_set_payment_hash(this_ptr: &mut HTLCOutputInCommitment, mut val: crate::c_types::ThirtyTwoBytes) {
536         unsafe { &mut *this_ptr.inner }.payment_hash = ::lightning::ln::channelmanager::PaymentHash(val.data);
537 }
538 /// The position within the commitment transactions' outputs. This may be None if the value is
539 /// below the dust limit (in which case no output appears in the commitment transaction and the
540 /// value is spent to additional transaction fees).
541 #[no_mangle]
542 pub extern "C" fn HTLCOutputInCommitment_get_transaction_output_index(this_ptr: &HTLCOutputInCommitment) -> crate::c_types::derived::COption_u32Z {
543         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.transaction_output_index;
544         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u32Z::None } else {  { crate::c_types::derived::COption_u32Z::Some(inner_val.unwrap()) } };
545         local_inner_val
546 }
547 /// The position within the commitment transactions' outputs. This may be None if the value is
548 /// below the dust limit (in which case no output appears in the commitment transaction and the
549 /// value is spent to additional transaction fees).
550 #[no_mangle]
551 pub extern "C" fn HTLCOutputInCommitment_set_transaction_output_index(this_ptr: &mut HTLCOutputInCommitment, mut val: crate::c_types::derived::COption_u32Z) {
552         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
553         unsafe { &mut *this_ptr.inner }.transaction_output_index = local_val;
554 }
555 /// Constructs a new HTLCOutputInCommitment given each field
556 #[must_use]
557 #[no_mangle]
558 pub extern "C" fn HTLCOutputInCommitment_new(mut offered_arg: bool, mut amount_msat_arg: u64, mut cltv_expiry_arg: u32, mut payment_hash_arg: crate::c_types::ThirtyTwoBytes, mut transaction_output_index_arg: crate::c_types::derived::COption_u32Z) -> HTLCOutputInCommitment {
559         let mut local_transaction_output_index_arg = if transaction_output_index_arg.is_some() { Some( { transaction_output_index_arg.take() }) } else { None };
560         HTLCOutputInCommitment { inner: Box::into_raw(Box::new(nativeHTLCOutputInCommitment {
561                 offered: offered_arg,
562                 amount_msat: amount_msat_arg,
563                 cltv_expiry: cltv_expiry_arg,
564                 payment_hash: ::lightning::ln::channelmanager::PaymentHash(payment_hash_arg.data),
565                 transaction_output_index: local_transaction_output_index_arg,
566         })), is_owned: true }
567 }
568 impl Clone for HTLCOutputInCommitment {
569         fn clone(&self) -> Self {
570                 Self {
571                         inner: if <*mut nativeHTLCOutputInCommitment>::is_null(self.inner) { std::ptr::null_mut() } else {
572                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
573                         is_owned: true,
574                 }
575         }
576 }
577 #[allow(unused)]
578 /// Used only if an object of this type is returned as a trait impl by a method
579 pub(crate) extern "C" fn HTLCOutputInCommitment_clone_void(this_ptr: *const c_void) -> *mut c_void {
580         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeHTLCOutputInCommitment)).clone() })) as *mut c_void
581 }
582 #[no_mangle]
583 /// Creates a copy of the HTLCOutputInCommitment
584 pub extern "C" fn HTLCOutputInCommitment_clone(orig: &HTLCOutputInCommitment) -> HTLCOutputInCommitment {
585         orig.clone()
586 }
587 #[no_mangle]
588 /// Serialize the HTLCOutputInCommitment object into a byte array which can be read by HTLCOutputInCommitment_read
589 pub extern "C" fn HTLCOutputInCommitment_write(obj: &HTLCOutputInCommitment) -> crate::c_types::derived::CVec_u8Z {
590         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
591 }
592 #[no_mangle]
593 pub(crate) extern "C" fn HTLCOutputInCommitment_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
594         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeHTLCOutputInCommitment) })
595 }
596 #[no_mangle]
597 /// Read a HTLCOutputInCommitment from a byte array, created by HTLCOutputInCommitment_write
598 pub extern "C" fn HTLCOutputInCommitment_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_HTLCOutputInCommitmentDecodeErrorZ {
599         let res = crate::c_types::deserialize_obj(ser);
600         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::HTLCOutputInCommitment { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
601         local_res
602 }
603 /// Gets the witness redeemscript for an HTLC output in a commitment transaction. Note that htlc
604 /// does not need to have its previous_output_index filled.
605 #[no_mangle]
606 pub extern "C" fn get_htlc_redeemscript(htlc: &crate::lightning::ln::chan_utils::HTLCOutputInCommitment, keys: &crate::lightning::ln::chan_utils::TxCreationKeys) -> crate::c_types::derived::CVec_u8Z {
607         let mut ret = lightning::ln::chan_utils::get_htlc_redeemscript(unsafe { &*htlc.inner }, unsafe { &*keys.inner });
608         ret.into_bytes().into()
609 }
610
611 /// Gets the redeemscript for a funding output from the two funding public keys.
612 /// Note that the order of funding public keys does not matter.
613 #[no_mangle]
614 pub extern "C" fn make_funding_redeemscript(mut broadcaster: crate::c_types::PublicKey, mut countersignatory: crate::c_types::PublicKey) -> crate::c_types::derived::CVec_u8Z {
615         let mut ret = lightning::ln::chan_utils::make_funding_redeemscript(&broadcaster.into_rust(), &countersignatory.into_rust());
616         ret.into_bytes().into()
617 }
618
619 /// panics if htlc.transaction_output_index.is_none()!
620 #[no_mangle]
621 pub extern "C" fn build_htlc_transaction(prev_hash: *const [u8; 32], mut feerate_per_kw: u32, mut contest_delay: u16, htlc: &crate::lightning::ln::chan_utils::HTLCOutputInCommitment, mut broadcaster_delayed_payment_key: crate::c_types::PublicKey, mut revocation_key: crate::c_types::PublicKey) -> crate::c_types::Transaction {
622         let mut ret = lightning::ln::chan_utils::build_htlc_transaction(&::bitcoin::hash_types::Txid::from_slice(&unsafe { &*prev_hash }[..]).unwrap(), feerate_per_kw, contest_delay, unsafe { &*htlc.inner }, &broadcaster_delayed_payment_key.into_rust(), &revocation_key.into_rust());
623         let mut local_ret = ::bitcoin::consensus::encode::serialize(&ret);
624         crate::c_types::Transaction::from_vec(local_ret)
625 }
626
627
628 use lightning::ln::chan_utils::ChannelTransactionParameters as nativeChannelTransactionParametersImport;
629 type nativeChannelTransactionParameters = nativeChannelTransactionParametersImport;
630
631 /// Per-channel data used to build transactions in conjunction with the per-commitment data (CommitmentTransaction).
632 /// The fields are organized by holder/counterparty.
633 ///
634 /// Normally, this is converted to the broadcaster/countersignatory-organized DirectedChannelTransactionParameters
635 /// before use, via the as_holder_broadcastable and as_counterparty_broadcastable functions.
636 #[must_use]
637 #[repr(C)]
638 pub struct ChannelTransactionParameters {
639         /// A pointer to the opaque Rust object.
640
641         /// Nearly everywhere, inner must be non-null, however in places where
642         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
643         pub inner: *mut nativeChannelTransactionParameters,
644         /// Indicates that this is the only struct which contains the same pointer.
645
646         /// Rust functions which take ownership of an object provided via an argument require
647         /// this to be true and invalidate the object pointed to by inner.
648         pub is_owned: bool,
649 }
650
651 impl Drop for ChannelTransactionParameters {
652         fn drop(&mut self) {
653                 if self.is_owned && !<*mut nativeChannelTransactionParameters>::is_null(self.inner) {
654                         let _ = unsafe { Box::from_raw(self.inner) };
655                 }
656         }
657 }
658 /// Frees any resources used by the ChannelTransactionParameters, if is_owned is set and inner is non-NULL.
659 #[no_mangle]
660 pub extern "C" fn ChannelTransactionParameters_free(this_obj: ChannelTransactionParameters) { }
661 #[allow(unused)]
662 /// Used only if an object of this type is returned as a trait impl by a method
663 extern "C" fn ChannelTransactionParameters_free_void(this_ptr: *mut c_void) {
664         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelTransactionParameters); }
665 }
666 #[allow(unused)]
667 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
668 impl ChannelTransactionParameters {
669         pub(crate) fn take_inner(mut self) -> *mut nativeChannelTransactionParameters {
670                 assert!(self.is_owned);
671                 let ret = self.inner;
672                 self.inner = std::ptr::null_mut();
673                 ret
674         }
675 }
676 /// Holder public keys
677 #[no_mangle]
678 pub extern "C" fn ChannelTransactionParameters_get_holder_pubkeys(this_ptr: &ChannelTransactionParameters) -> crate::lightning::ln::chan_utils::ChannelPublicKeys {
679         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.holder_pubkeys;
680         crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
681 }
682 /// Holder public keys
683 #[no_mangle]
684 pub extern "C" fn ChannelTransactionParameters_set_holder_pubkeys(this_ptr: &mut ChannelTransactionParameters, mut val: crate::lightning::ln::chan_utils::ChannelPublicKeys) {
685         unsafe { &mut *this_ptr.inner }.holder_pubkeys = *unsafe { Box::from_raw(val.take_inner()) };
686 }
687 /// The contest delay selected by the holder, which applies to counterparty-broadcast transactions
688 #[no_mangle]
689 pub extern "C" fn ChannelTransactionParameters_get_holder_selected_contest_delay(this_ptr: &ChannelTransactionParameters) -> u16 {
690         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.holder_selected_contest_delay;
691         (*inner_val)
692 }
693 /// The contest delay selected by the holder, which applies to counterparty-broadcast transactions
694 #[no_mangle]
695 pub extern "C" fn ChannelTransactionParameters_set_holder_selected_contest_delay(this_ptr: &mut ChannelTransactionParameters, mut val: u16) {
696         unsafe { &mut *this_ptr.inner }.holder_selected_contest_delay = val;
697 }
698 /// Whether the holder is the initiator of this channel.
699 /// This is an input to the commitment number obscure factor computation.
700 #[no_mangle]
701 pub extern "C" fn ChannelTransactionParameters_get_is_outbound_from_holder(this_ptr: &ChannelTransactionParameters) -> bool {
702         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_outbound_from_holder;
703         (*inner_val)
704 }
705 /// Whether the holder is the initiator of this channel.
706 /// This is an input to the commitment number obscure factor computation.
707 #[no_mangle]
708 pub extern "C" fn ChannelTransactionParameters_set_is_outbound_from_holder(this_ptr: &mut ChannelTransactionParameters, mut val: bool) {
709         unsafe { &mut *this_ptr.inner }.is_outbound_from_holder = val;
710 }
711 /// The late-bound counterparty channel transaction parameters.
712 /// These parameters are populated at the point in the protocol where the counterparty provides them.
713 #[no_mangle]
714 pub extern "C" fn ChannelTransactionParameters_get_counterparty_parameters(this_ptr: &ChannelTransactionParameters) -> crate::lightning::ln::chan_utils::CounterpartyChannelTransactionParameters {
715         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty_parameters;
716         let mut local_inner_val = crate::lightning::ln::chan_utils::CounterpartyChannelTransactionParameters { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
717         local_inner_val
718 }
719 /// The late-bound counterparty channel transaction parameters.
720 /// These parameters are populated at the point in the protocol where the counterparty provides them.
721 #[no_mangle]
722 pub extern "C" fn ChannelTransactionParameters_set_counterparty_parameters(this_ptr: &mut ChannelTransactionParameters, mut val: crate::lightning::ln::chan_utils::CounterpartyChannelTransactionParameters) {
723         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
724         unsafe { &mut *this_ptr.inner }.counterparty_parameters = local_val;
725 }
726 /// The late-bound funding outpoint
727 #[no_mangle]
728 pub extern "C" fn ChannelTransactionParameters_get_funding_outpoint(this_ptr: &ChannelTransactionParameters) -> crate::lightning::chain::transaction::OutPoint {
729         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_outpoint;
730         let mut local_inner_val = crate::lightning::chain::transaction::OutPoint { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
731         local_inner_val
732 }
733 /// The late-bound funding outpoint
734 #[no_mangle]
735 pub extern "C" fn ChannelTransactionParameters_set_funding_outpoint(this_ptr: &mut ChannelTransactionParameters, mut val: crate::lightning::chain::transaction::OutPoint) {
736         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
737         unsafe { &mut *this_ptr.inner }.funding_outpoint = local_val;
738 }
739 /// Constructs a new ChannelTransactionParameters given each field
740 #[must_use]
741 #[no_mangle]
742 pub extern "C" fn ChannelTransactionParameters_new(mut holder_pubkeys_arg: crate::lightning::ln::chan_utils::ChannelPublicKeys, mut holder_selected_contest_delay_arg: u16, mut is_outbound_from_holder_arg: bool, mut counterparty_parameters_arg: crate::lightning::ln::chan_utils::CounterpartyChannelTransactionParameters, mut funding_outpoint_arg: crate::lightning::chain::transaction::OutPoint) -> ChannelTransactionParameters {
743         let mut local_counterparty_parameters_arg = if counterparty_parameters_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(counterparty_parameters_arg.take_inner()) } }) };
744         let mut local_funding_outpoint_arg = if funding_outpoint_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(funding_outpoint_arg.take_inner()) } }) };
745         ChannelTransactionParameters { inner: Box::into_raw(Box::new(nativeChannelTransactionParameters {
746                 holder_pubkeys: *unsafe { Box::from_raw(holder_pubkeys_arg.take_inner()) },
747                 holder_selected_contest_delay: holder_selected_contest_delay_arg,
748                 is_outbound_from_holder: is_outbound_from_holder_arg,
749                 counterparty_parameters: local_counterparty_parameters_arg,
750                 funding_outpoint: local_funding_outpoint_arg,
751         })), is_owned: true }
752 }
753 impl Clone for ChannelTransactionParameters {
754         fn clone(&self) -> Self {
755                 Self {
756                         inner: if <*mut nativeChannelTransactionParameters>::is_null(self.inner) { std::ptr::null_mut() } else {
757                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
758                         is_owned: true,
759                 }
760         }
761 }
762 #[allow(unused)]
763 /// Used only if an object of this type is returned as a trait impl by a method
764 pub(crate) extern "C" fn ChannelTransactionParameters_clone_void(this_ptr: *const c_void) -> *mut c_void {
765         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelTransactionParameters)).clone() })) as *mut c_void
766 }
767 #[no_mangle]
768 /// Creates a copy of the ChannelTransactionParameters
769 pub extern "C" fn ChannelTransactionParameters_clone(orig: &ChannelTransactionParameters) -> ChannelTransactionParameters {
770         orig.clone()
771 }
772
773 use lightning::ln::chan_utils::CounterpartyChannelTransactionParameters as nativeCounterpartyChannelTransactionParametersImport;
774 type nativeCounterpartyChannelTransactionParameters = nativeCounterpartyChannelTransactionParametersImport;
775
776 /// Late-bound per-channel counterparty data used to build transactions.
777 #[must_use]
778 #[repr(C)]
779 pub struct CounterpartyChannelTransactionParameters {
780         /// A pointer to the opaque Rust object.
781
782         /// Nearly everywhere, inner must be non-null, however in places where
783         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
784         pub inner: *mut nativeCounterpartyChannelTransactionParameters,
785         /// Indicates that this is the only struct which contains the same pointer.
786
787         /// Rust functions which take ownership of an object provided via an argument require
788         /// this to be true and invalidate the object pointed to by inner.
789         pub is_owned: bool,
790 }
791
792 impl Drop for CounterpartyChannelTransactionParameters {
793         fn drop(&mut self) {
794                 if self.is_owned && !<*mut nativeCounterpartyChannelTransactionParameters>::is_null(self.inner) {
795                         let _ = unsafe { Box::from_raw(self.inner) };
796                 }
797         }
798 }
799 /// Frees any resources used by the CounterpartyChannelTransactionParameters, if is_owned is set and inner is non-NULL.
800 #[no_mangle]
801 pub extern "C" fn CounterpartyChannelTransactionParameters_free(this_obj: CounterpartyChannelTransactionParameters) { }
802 #[allow(unused)]
803 /// Used only if an object of this type is returned as a trait impl by a method
804 extern "C" fn CounterpartyChannelTransactionParameters_free_void(this_ptr: *mut c_void) {
805         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeCounterpartyChannelTransactionParameters); }
806 }
807 #[allow(unused)]
808 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
809 impl CounterpartyChannelTransactionParameters {
810         pub(crate) fn take_inner(mut self) -> *mut nativeCounterpartyChannelTransactionParameters {
811                 assert!(self.is_owned);
812                 let ret = self.inner;
813                 self.inner = std::ptr::null_mut();
814                 ret
815         }
816 }
817 /// Counter-party public keys
818 #[no_mangle]
819 pub extern "C" fn CounterpartyChannelTransactionParameters_get_pubkeys(this_ptr: &CounterpartyChannelTransactionParameters) -> crate::lightning::ln::chan_utils::ChannelPublicKeys {
820         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.pubkeys;
821         crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
822 }
823 /// Counter-party public keys
824 #[no_mangle]
825 pub extern "C" fn CounterpartyChannelTransactionParameters_set_pubkeys(this_ptr: &mut CounterpartyChannelTransactionParameters, mut val: crate::lightning::ln::chan_utils::ChannelPublicKeys) {
826         unsafe { &mut *this_ptr.inner }.pubkeys = *unsafe { Box::from_raw(val.take_inner()) };
827 }
828 /// The contest delay selected by the counterparty, which applies to holder-broadcast transactions
829 #[no_mangle]
830 pub extern "C" fn CounterpartyChannelTransactionParameters_get_selected_contest_delay(this_ptr: &CounterpartyChannelTransactionParameters) -> u16 {
831         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.selected_contest_delay;
832         (*inner_val)
833 }
834 /// The contest delay selected by the counterparty, which applies to holder-broadcast transactions
835 #[no_mangle]
836 pub extern "C" fn CounterpartyChannelTransactionParameters_set_selected_contest_delay(this_ptr: &mut CounterpartyChannelTransactionParameters, mut val: u16) {
837         unsafe { &mut *this_ptr.inner }.selected_contest_delay = val;
838 }
839 /// Constructs a new CounterpartyChannelTransactionParameters given each field
840 #[must_use]
841 #[no_mangle]
842 pub extern "C" fn CounterpartyChannelTransactionParameters_new(mut pubkeys_arg: crate::lightning::ln::chan_utils::ChannelPublicKeys, mut selected_contest_delay_arg: u16) -> CounterpartyChannelTransactionParameters {
843         CounterpartyChannelTransactionParameters { inner: Box::into_raw(Box::new(nativeCounterpartyChannelTransactionParameters {
844                 pubkeys: *unsafe { Box::from_raw(pubkeys_arg.take_inner()) },
845                 selected_contest_delay: selected_contest_delay_arg,
846         })), is_owned: true }
847 }
848 impl Clone for CounterpartyChannelTransactionParameters {
849         fn clone(&self) -> Self {
850                 Self {
851                         inner: if <*mut nativeCounterpartyChannelTransactionParameters>::is_null(self.inner) { std::ptr::null_mut() } else {
852                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
853                         is_owned: true,
854                 }
855         }
856 }
857 #[allow(unused)]
858 /// Used only if an object of this type is returned as a trait impl by a method
859 pub(crate) extern "C" fn CounterpartyChannelTransactionParameters_clone_void(this_ptr: *const c_void) -> *mut c_void {
860         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeCounterpartyChannelTransactionParameters)).clone() })) as *mut c_void
861 }
862 #[no_mangle]
863 /// Creates a copy of the CounterpartyChannelTransactionParameters
864 pub extern "C" fn CounterpartyChannelTransactionParameters_clone(orig: &CounterpartyChannelTransactionParameters) -> CounterpartyChannelTransactionParameters {
865         orig.clone()
866 }
867 /// Whether the late bound parameters are populated.
868 #[must_use]
869 #[no_mangle]
870 pub extern "C" fn ChannelTransactionParameters_is_populated(this_arg: &ChannelTransactionParameters) -> bool {
871         let mut ret = unsafe { &*this_arg.inner }.is_populated();
872         ret
873 }
874
875 /// Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
876 /// given that the holder is the broadcaster.
877 ///
878 /// self.is_populated() must be true before calling this function.
879 #[must_use]
880 #[no_mangle]
881 pub extern "C" fn ChannelTransactionParameters_as_holder_broadcastable(this_arg: &ChannelTransactionParameters) -> crate::lightning::ln::chan_utils::DirectedChannelTransactionParameters {
882         let mut ret = unsafe { &*this_arg.inner }.as_holder_broadcastable();
883         crate::lightning::ln::chan_utils::DirectedChannelTransactionParameters { inner: Box::into_raw(Box::new(ret)), is_owned: true }
884 }
885
886 /// Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
887 /// given that the counterparty is the broadcaster.
888 ///
889 /// self.is_populated() must be true before calling this function.
890 #[must_use]
891 #[no_mangle]
892 pub extern "C" fn ChannelTransactionParameters_as_counterparty_broadcastable(this_arg: &ChannelTransactionParameters) -> crate::lightning::ln::chan_utils::DirectedChannelTransactionParameters {
893         let mut ret = unsafe { &*this_arg.inner }.as_counterparty_broadcastable();
894         crate::lightning::ln::chan_utils::DirectedChannelTransactionParameters { inner: Box::into_raw(Box::new(ret)), is_owned: true }
895 }
896
897 #[no_mangle]
898 /// Serialize the CounterpartyChannelTransactionParameters object into a byte array which can be read by CounterpartyChannelTransactionParameters_read
899 pub extern "C" fn CounterpartyChannelTransactionParameters_write(obj: &CounterpartyChannelTransactionParameters) -> crate::c_types::derived::CVec_u8Z {
900         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
901 }
902 #[no_mangle]
903 pub(crate) extern "C" fn CounterpartyChannelTransactionParameters_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
904         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeCounterpartyChannelTransactionParameters) })
905 }
906 #[no_mangle]
907 /// Read a CounterpartyChannelTransactionParameters from a byte array, created by CounterpartyChannelTransactionParameters_write
908 pub extern "C" fn CounterpartyChannelTransactionParameters_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_CounterpartyChannelTransactionParametersDecodeErrorZ {
909         let res = crate::c_types::deserialize_obj(ser);
910         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::CounterpartyChannelTransactionParameters { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
911         local_res
912 }
913 #[no_mangle]
914 /// Serialize the ChannelTransactionParameters object into a byte array which can be read by ChannelTransactionParameters_read
915 pub extern "C" fn ChannelTransactionParameters_write(obj: &ChannelTransactionParameters) -> crate::c_types::derived::CVec_u8Z {
916         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
917 }
918 #[no_mangle]
919 pub(crate) extern "C" fn ChannelTransactionParameters_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
920         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelTransactionParameters) })
921 }
922 #[no_mangle]
923 /// Read a ChannelTransactionParameters from a byte array, created by ChannelTransactionParameters_write
924 pub extern "C" fn ChannelTransactionParameters_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelTransactionParametersDecodeErrorZ {
925         let res = crate::c_types::deserialize_obj(ser);
926         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::ChannelTransactionParameters { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
927         local_res
928 }
929
930 use lightning::ln::chan_utils::DirectedChannelTransactionParameters as nativeDirectedChannelTransactionParametersImport;
931 type nativeDirectedChannelTransactionParameters = nativeDirectedChannelTransactionParametersImport<'static>;
932
933 /// Static channel fields used to build transactions given per-commitment fields, organized by
934 /// broadcaster/countersignatory.
935 ///
936 /// This is derived from the holder/counterparty-organized ChannelTransactionParameters via the
937 /// as_holder_broadcastable and as_counterparty_broadcastable functions.
938 #[must_use]
939 #[repr(C)]
940 pub struct DirectedChannelTransactionParameters {
941         /// A pointer to the opaque Rust object.
942
943         /// Nearly everywhere, inner must be non-null, however in places where
944         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
945         pub inner: *mut nativeDirectedChannelTransactionParameters,
946         /// Indicates that this is the only struct which contains the same pointer.
947
948         /// Rust functions which take ownership of an object provided via an argument require
949         /// this to be true and invalidate the object pointed to by inner.
950         pub is_owned: bool,
951 }
952
953 impl Drop for DirectedChannelTransactionParameters {
954         fn drop(&mut self) {
955                 if self.is_owned && !<*mut nativeDirectedChannelTransactionParameters>::is_null(self.inner) {
956                         let _ = unsafe { Box::from_raw(self.inner) };
957                 }
958         }
959 }
960 /// Frees any resources used by the DirectedChannelTransactionParameters, if is_owned is set and inner is non-NULL.
961 #[no_mangle]
962 pub extern "C" fn DirectedChannelTransactionParameters_free(this_obj: DirectedChannelTransactionParameters) { }
963 #[allow(unused)]
964 /// Used only if an object of this type is returned as a trait impl by a method
965 extern "C" fn DirectedChannelTransactionParameters_free_void(this_ptr: *mut c_void) {
966         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeDirectedChannelTransactionParameters); }
967 }
968 #[allow(unused)]
969 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
970 impl DirectedChannelTransactionParameters {
971         pub(crate) fn take_inner(mut self) -> *mut nativeDirectedChannelTransactionParameters {
972                 assert!(self.is_owned);
973                 let ret = self.inner;
974                 self.inner = std::ptr::null_mut();
975                 ret
976         }
977 }
978 /// Get the channel pubkeys for the broadcaster
979 #[must_use]
980 #[no_mangle]
981 pub extern "C" fn DirectedChannelTransactionParameters_broadcaster_pubkeys(this_arg: &DirectedChannelTransactionParameters) -> crate::lightning::ln::chan_utils::ChannelPublicKeys {
982         let mut ret = unsafe { &*this_arg.inner }.broadcaster_pubkeys();
983         crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
984 }
985
986 /// Get the channel pubkeys for the countersignatory
987 #[must_use]
988 #[no_mangle]
989 pub extern "C" fn DirectedChannelTransactionParameters_countersignatory_pubkeys(this_arg: &DirectedChannelTransactionParameters) -> crate::lightning::ln::chan_utils::ChannelPublicKeys {
990         let mut ret = unsafe { &*this_arg.inner }.countersignatory_pubkeys();
991         crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
992 }
993
994 /// Get the contest delay applicable to the transactions.
995 /// Note that the contest delay was selected by the countersignatory.
996 #[must_use]
997 #[no_mangle]
998 pub extern "C" fn DirectedChannelTransactionParameters_contest_delay(this_arg: &DirectedChannelTransactionParameters) -> u16 {
999         let mut ret = unsafe { &*this_arg.inner }.contest_delay();
1000         ret
1001 }
1002
1003 /// Whether the channel is outbound from the broadcaster.
1004 ///
1005 /// The boolean representing the side that initiated the channel is
1006 /// an input to the commitment number obscure factor computation.
1007 #[must_use]
1008 #[no_mangle]
1009 pub extern "C" fn DirectedChannelTransactionParameters_is_outbound(this_arg: &DirectedChannelTransactionParameters) -> bool {
1010         let mut ret = unsafe { &*this_arg.inner }.is_outbound();
1011         ret
1012 }
1013
1014 /// The funding outpoint
1015 #[must_use]
1016 #[no_mangle]
1017 pub extern "C" fn DirectedChannelTransactionParameters_funding_outpoint(this_arg: &DirectedChannelTransactionParameters) -> crate::lightning::chain::transaction::OutPoint {
1018         let mut ret = unsafe { &*this_arg.inner }.funding_outpoint();
1019         crate::c_types::bitcoin_to_C_outpoint(ret)
1020 }
1021
1022
1023 use lightning::ln::chan_utils::HolderCommitmentTransaction as nativeHolderCommitmentTransactionImport;
1024 type nativeHolderCommitmentTransaction = nativeHolderCommitmentTransactionImport;
1025
1026 /// Information needed to build and sign a holder's commitment transaction.
1027 ///
1028 /// The transaction is only signed once we are ready to broadcast.
1029 #[must_use]
1030 #[repr(C)]
1031 pub struct HolderCommitmentTransaction {
1032         /// A pointer to the opaque Rust object.
1033
1034         /// Nearly everywhere, inner must be non-null, however in places where
1035         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1036         pub inner: *mut nativeHolderCommitmentTransaction,
1037         /// Indicates that this is the only struct which contains the same pointer.
1038
1039         /// Rust functions which take ownership of an object provided via an argument require
1040         /// this to be true and invalidate the object pointed to by inner.
1041         pub is_owned: bool,
1042 }
1043
1044 impl Drop for HolderCommitmentTransaction {
1045         fn drop(&mut self) {
1046                 if self.is_owned && !<*mut nativeHolderCommitmentTransaction>::is_null(self.inner) {
1047                         let _ = unsafe { Box::from_raw(self.inner) };
1048                 }
1049         }
1050 }
1051 /// Frees any resources used by the HolderCommitmentTransaction, if is_owned is set and inner is non-NULL.
1052 #[no_mangle]
1053 pub extern "C" fn HolderCommitmentTransaction_free(this_obj: HolderCommitmentTransaction) { }
1054 #[allow(unused)]
1055 /// Used only if an object of this type is returned as a trait impl by a method
1056 extern "C" fn HolderCommitmentTransaction_free_void(this_ptr: *mut c_void) {
1057         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeHolderCommitmentTransaction); }
1058 }
1059 #[allow(unused)]
1060 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1061 impl HolderCommitmentTransaction {
1062         pub(crate) fn take_inner(mut self) -> *mut nativeHolderCommitmentTransaction {
1063                 assert!(self.is_owned);
1064                 let ret = self.inner;
1065                 self.inner = std::ptr::null_mut();
1066                 ret
1067         }
1068 }
1069 /// Our counterparty's signature for the transaction
1070 #[no_mangle]
1071 pub extern "C" fn HolderCommitmentTransaction_get_counterparty_sig(this_ptr: &HolderCommitmentTransaction) -> crate::c_types::Signature {
1072         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty_sig;
1073         crate::c_types::Signature::from_rust(&(*inner_val))
1074 }
1075 /// Our counterparty's signature for the transaction
1076 #[no_mangle]
1077 pub extern "C" fn HolderCommitmentTransaction_set_counterparty_sig(this_ptr: &mut HolderCommitmentTransaction, mut val: crate::c_types::Signature) {
1078         unsafe { &mut *this_ptr.inner }.counterparty_sig = val.into_rust();
1079 }
1080 /// All non-dust counterparty HTLC signatures, in the order they appear in the transaction
1081 #[no_mangle]
1082 pub extern "C" fn HolderCommitmentTransaction_set_counterparty_htlc_sigs(this_ptr: &mut HolderCommitmentTransaction, mut val: crate::c_types::derived::CVec_SignatureZ) {
1083         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item.into_rust() }); };
1084         unsafe { &mut *this_ptr.inner }.counterparty_htlc_sigs = local_val;
1085 }
1086 impl Clone for HolderCommitmentTransaction {
1087         fn clone(&self) -> Self {
1088                 Self {
1089                         inner: if <*mut nativeHolderCommitmentTransaction>::is_null(self.inner) { std::ptr::null_mut() } else {
1090                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1091                         is_owned: true,
1092                 }
1093         }
1094 }
1095 #[allow(unused)]
1096 /// Used only if an object of this type is returned as a trait impl by a method
1097 pub(crate) extern "C" fn HolderCommitmentTransaction_clone_void(this_ptr: *const c_void) -> *mut c_void {
1098         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeHolderCommitmentTransaction)).clone() })) as *mut c_void
1099 }
1100 #[no_mangle]
1101 /// Creates a copy of the HolderCommitmentTransaction
1102 pub extern "C" fn HolderCommitmentTransaction_clone(orig: &HolderCommitmentTransaction) -> HolderCommitmentTransaction {
1103         orig.clone()
1104 }
1105 #[no_mangle]
1106 /// Serialize the HolderCommitmentTransaction object into a byte array which can be read by HolderCommitmentTransaction_read
1107 pub extern "C" fn HolderCommitmentTransaction_write(obj: &HolderCommitmentTransaction) -> crate::c_types::derived::CVec_u8Z {
1108         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1109 }
1110 #[no_mangle]
1111 pub(crate) extern "C" fn HolderCommitmentTransaction_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1112         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeHolderCommitmentTransaction) })
1113 }
1114 #[no_mangle]
1115 /// Read a HolderCommitmentTransaction from a byte array, created by HolderCommitmentTransaction_write
1116 pub extern "C" fn HolderCommitmentTransaction_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_HolderCommitmentTransactionDecodeErrorZ {
1117         let res = crate::c_types::deserialize_obj(ser);
1118         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::HolderCommitmentTransaction { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1119         local_res
1120 }
1121 /// Create a new holder transaction with the given counterparty signatures.
1122 /// The funding keys are used to figure out which signature should go first when building the transaction for broadcast.
1123 #[must_use]
1124 #[no_mangle]
1125 pub extern "C" fn HolderCommitmentTransaction_new(mut commitment_tx: crate::lightning::ln::chan_utils::CommitmentTransaction, mut counterparty_sig: crate::c_types::Signature, mut counterparty_htlc_sigs: crate::c_types::derived::CVec_SignatureZ, mut holder_funding_key: crate::c_types::PublicKey, mut counterparty_funding_key: crate::c_types::PublicKey) -> HolderCommitmentTransaction {
1126         let mut local_counterparty_htlc_sigs = Vec::new(); for mut item in counterparty_htlc_sigs.into_rust().drain(..) { local_counterparty_htlc_sigs.push( { item.into_rust() }); };
1127         let mut ret = lightning::ln::chan_utils::HolderCommitmentTransaction::new(*unsafe { Box::from_raw(commitment_tx.take_inner()) }, counterparty_sig.into_rust(), local_counterparty_htlc_sigs, &holder_funding_key.into_rust(), &counterparty_funding_key.into_rust());
1128         HolderCommitmentTransaction { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1129 }
1130
1131
1132 use lightning::ln::chan_utils::BuiltCommitmentTransaction as nativeBuiltCommitmentTransactionImport;
1133 type nativeBuiltCommitmentTransaction = nativeBuiltCommitmentTransactionImport;
1134
1135 /// A pre-built Bitcoin commitment transaction and its txid.
1136 #[must_use]
1137 #[repr(C)]
1138 pub struct BuiltCommitmentTransaction {
1139         /// A pointer to the opaque Rust object.
1140
1141         /// Nearly everywhere, inner must be non-null, however in places where
1142         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1143         pub inner: *mut nativeBuiltCommitmentTransaction,
1144         /// Indicates that this is the only struct which contains the same pointer.
1145
1146         /// Rust functions which take ownership of an object provided via an argument require
1147         /// this to be true and invalidate the object pointed to by inner.
1148         pub is_owned: bool,
1149 }
1150
1151 impl Drop for BuiltCommitmentTransaction {
1152         fn drop(&mut self) {
1153                 if self.is_owned && !<*mut nativeBuiltCommitmentTransaction>::is_null(self.inner) {
1154                         let _ = unsafe { Box::from_raw(self.inner) };
1155                 }
1156         }
1157 }
1158 /// Frees any resources used by the BuiltCommitmentTransaction, if is_owned is set and inner is non-NULL.
1159 #[no_mangle]
1160 pub extern "C" fn BuiltCommitmentTransaction_free(this_obj: BuiltCommitmentTransaction) { }
1161 #[allow(unused)]
1162 /// Used only if an object of this type is returned as a trait impl by a method
1163 extern "C" fn BuiltCommitmentTransaction_free_void(this_ptr: *mut c_void) {
1164         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeBuiltCommitmentTransaction); }
1165 }
1166 #[allow(unused)]
1167 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1168 impl BuiltCommitmentTransaction {
1169         pub(crate) fn take_inner(mut self) -> *mut nativeBuiltCommitmentTransaction {
1170                 assert!(self.is_owned);
1171                 let ret = self.inner;
1172                 self.inner = std::ptr::null_mut();
1173                 ret
1174         }
1175 }
1176 /// The commitment transaction
1177 #[no_mangle]
1178 pub extern "C" fn BuiltCommitmentTransaction_get_transaction(this_ptr: &BuiltCommitmentTransaction) -> crate::c_types::Transaction {
1179         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.transaction;
1180         let mut local_inner_val = ::bitcoin::consensus::encode::serialize(inner_val);
1181         crate::c_types::Transaction::from_vec(local_inner_val)
1182 }
1183 /// The commitment transaction
1184 #[no_mangle]
1185 pub extern "C" fn BuiltCommitmentTransaction_set_transaction(this_ptr: &mut BuiltCommitmentTransaction, mut val: crate::c_types::Transaction) {
1186         unsafe { &mut *this_ptr.inner }.transaction = val.into_bitcoin();
1187 }
1188 /// The txid for the commitment transaction.
1189 ///
1190 /// This is provided as a performance optimization, instead of calling transaction.txid()
1191 /// multiple times.
1192 #[no_mangle]
1193 pub extern "C" fn BuiltCommitmentTransaction_get_txid(this_ptr: &BuiltCommitmentTransaction) -> *const [u8; 32] {
1194         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.txid;
1195         (*inner_val).as_inner()
1196 }
1197 /// The txid for the commitment transaction.
1198 ///
1199 /// This is provided as a performance optimization, instead of calling transaction.txid()
1200 /// multiple times.
1201 #[no_mangle]
1202 pub extern "C" fn BuiltCommitmentTransaction_set_txid(this_ptr: &mut BuiltCommitmentTransaction, mut val: crate::c_types::ThirtyTwoBytes) {
1203         unsafe { &mut *this_ptr.inner }.txid = ::bitcoin::hash_types::Txid::from_slice(&val.data[..]).unwrap();
1204 }
1205 /// Constructs a new BuiltCommitmentTransaction given each field
1206 #[must_use]
1207 #[no_mangle]
1208 pub extern "C" fn BuiltCommitmentTransaction_new(mut transaction_arg: crate::c_types::Transaction, mut txid_arg: crate::c_types::ThirtyTwoBytes) -> BuiltCommitmentTransaction {
1209         BuiltCommitmentTransaction { inner: Box::into_raw(Box::new(nativeBuiltCommitmentTransaction {
1210                 transaction: transaction_arg.into_bitcoin(),
1211                 txid: ::bitcoin::hash_types::Txid::from_slice(&txid_arg.data[..]).unwrap(),
1212         })), is_owned: true }
1213 }
1214 impl Clone for BuiltCommitmentTransaction {
1215         fn clone(&self) -> Self {
1216                 Self {
1217                         inner: if <*mut nativeBuiltCommitmentTransaction>::is_null(self.inner) { std::ptr::null_mut() } else {
1218                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1219                         is_owned: true,
1220                 }
1221         }
1222 }
1223 #[allow(unused)]
1224 /// Used only if an object of this type is returned as a trait impl by a method
1225 pub(crate) extern "C" fn BuiltCommitmentTransaction_clone_void(this_ptr: *const c_void) -> *mut c_void {
1226         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeBuiltCommitmentTransaction)).clone() })) as *mut c_void
1227 }
1228 #[no_mangle]
1229 /// Creates a copy of the BuiltCommitmentTransaction
1230 pub extern "C" fn BuiltCommitmentTransaction_clone(orig: &BuiltCommitmentTransaction) -> BuiltCommitmentTransaction {
1231         orig.clone()
1232 }
1233 #[no_mangle]
1234 /// Serialize the BuiltCommitmentTransaction object into a byte array which can be read by BuiltCommitmentTransaction_read
1235 pub extern "C" fn BuiltCommitmentTransaction_write(obj: &BuiltCommitmentTransaction) -> crate::c_types::derived::CVec_u8Z {
1236         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1237 }
1238 #[no_mangle]
1239 pub(crate) extern "C" fn BuiltCommitmentTransaction_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1240         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeBuiltCommitmentTransaction) })
1241 }
1242 #[no_mangle]
1243 /// Read a BuiltCommitmentTransaction from a byte array, created by BuiltCommitmentTransaction_write
1244 pub extern "C" fn BuiltCommitmentTransaction_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_BuiltCommitmentTransactionDecodeErrorZ {
1245         let res = crate::c_types::deserialize_obj(ser);
1246         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::BuiltCommitmentTransaction { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1247         local_res
1248 }
1249 /// Get the SIGHASH_ALL sighash value of the transaction.
1250 ///
1251 /// This can be used to verify a signature.
1252 #[must_use]
1253 #[no_mangle]
1254 pub extern "C" fn BuiltCommitmentTransaction_get_sighash_all(this_arg: &BuiltCommitmentTransaction, mut funding_redeemscript: crate::c_types::u8slice, mut channel_value_satoshis: u64) -> crate::c_types::ThirtyTwoBytes {
1255         let mut ret = unsafe { &*this_arg.inner }.get_sighash_all(&::bitcoin::blockdata::script::Script::from(Vec::from(funding_redeemscript.to_slice())), channel_value_satoshis);
1256         crate::c_types::ThirtyTwoBytes { data: ret.as_ref().clone() }
1257 }
1258
1259 /// Sign a transaction, either because we are counter-signing the counterparty's transaction or
1260 /// because we are about to broadcast a holder transaction.
1261 #[must_use]
1262 #[no_mangle]
1263 pub extern "C" fn BuiltCommitmentTransaction_sign(this_arg: &BuiltCommitmentTransaction, funding_key: *const [u8; 32], mut funding_redeemscript: crate::c_types::u8slice, mut channel_value_satoshis: u64) -> crate::c_types::Signature {
1264         let mut ret = unsafe { &*this_arg.inner }.sign(&::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *funding_key}[..]).unwrap(), &::bitcoin::blockdata::script::Script::from(Vec::from(funding_redeemscript.to_slice())), channel_value_satoshis, secp256k1::SECP256K1);
1265         crate::c_types::Signature::from_rust(&ret)
1266 }
1267
1268
1269 use lightning::ln::chan_utils::CommitmentTransaction as nativeCommitmentTransactionImport;
1270 type nativeCommitmentTransaction = nativeCommitmentTransactionImport;
1271
1272 /// This class tracks the per-transaction information needed to build a commitment transaction and to
1273 /// actually build it and sign.  It is used for holder transactions that we sign only when needed
1274 /// and for transactions we sign for the counterparty.
1275 ///
1276 /// This class can be used inside a signer implementation to generate a signature given the relevant
1277 /// secret key.
1278 #[must_use]
1279 #[repr(C)]
1280 pub struct CommitmentTransaction {
1281         /// A pointer to the opaque Rust object.
1282
1283         /// Nearly everywhere, inner must be non-null, however in places where
1284         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1285         pub inner: *mut nativeCommitmentTransaction,
1286         /// Indicates that this is the only struct which contains the same pointer.
1287
1288         /// Rust functions which take ownership of an object provided via an argument require
1289         /// this to be true and invalidate the object pointed to by inner.
1290         pub is_owned: bool,
1291 }
1292
1293 impl Drop for CommitmentTransaction {
1294         fn drop(&mut self) {
1295                 if self.is_owned && !<*mut nativeCommitmentTransaction>::is_null(self.inner) {
1296                         let _ = unsafe { Box::from_raw(self.inner) };
1297                 }
1298         }
1299 }
1300 /// Frees any resources used by the CommitmentTransaction, if is_owned is set and inner is non-NULL.
1301 #[no_mangle]
1302 pub extern "C" fn CommitmentTransaction_free(this_obj: CommitmentTransaction) { }
1303 #[allow(unused)]
1304 /// Used only if an object of this type is returned as a trait impl by a method
1305 extern "C" fn CommitmentTransaction_free_void(this_ptr: *mut c_void) {
1306         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeCommitmentTransaction); }
1307 }
1308 #[allow(unused)]
1309 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1310 impl CommitmentTransaction {
1311         pub(crate) fn take_inner(mut self) -> *mut nativeCommitmentTransaction {
1312                 assert!(self.is_owned);
1313                 let ret = self.inner;
1314                 self.inner = std::ptr::null_mut();
1315                 ret
1316         }
1317 }
1318 impl Clone for CommitmentTransaction {
1319         fn clone(&self) -> Self {
1320                 Self {
1321                         inner: if <*mut nativeCommitmentTransaction>::is_null(self.inner) { std::ptr::null_mut() } else {
1322                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1323                         is_owned: true,
1324                 }
1325         }
1326 }
1327 #[allow(unused)]
1328 /// Used only if an object of this type is returned as a trait impl by a method
1329 pub(crate) extern "C" fn CommitmentTransaction_clone_void(this_ptr: *const c_void) -> *mut c_void {
1330         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeCommitmentTransaction)).clone() })) as *mut c_void
1331 }
1332 #[no_mangle]
1333 /// Creates a copy of the CommitmentTransaction
1334 pub extern "C" fn CommitmentTransaction_clone(orig: &CommitmentTransaction) -> CommitmentTransaction {
1335         orig.clone()
1336 }
1337 #[no_mangle]
1338 /// Serialize the CommitmentTransaction object into a byte array which can be read by CommitmentTransaction_read
1339 pub extern "C" fn CommitmentTransaction_write(obj: &CommitmentTransaction) -> crate::c_types::derived::CVec_u8Z {
1340         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1341 }
1342 #[no_mangle]
1343 pub(crate) extern "C" fn CommitmentTransaction_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1344         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeCommitmentTransaction) })
1345 }
1346 #[no_mangle]
1347 /// Read a CommitmentTransaction from a byte array, created by CommitmentTransaction_write
1348 pub extern "C" fn CommitmentTransaction_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_CommitmentTransactionDecodeErrorZ {
1349         let res = crate::c_types::deserialize_obj(ser);
1350         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::CommitmentTransaction { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1351         local_res
1352 }
1353 /// The backwards-counting commitment number
1354 #[must_use]
1355 #[no_mangle]
1356 pub extern "C" fn CommitmentTransaction_commitment_number(this_arg: &CommitmentTransaction) -> u64 {
1357         let mut ret = unsafe { &*this_arg.inner }.commitment_number();
1358         ret
1359 }
1360
1361 /// The value to be sent to the broadcaster
1362 #[must_use]
1363 #[no_mangle]
1364 pub extern "C" fn CommitmentTransaction_to_broadcaster_value_sat(this_arg: &CommitmentTransaction) -> u64 {
1365         let mut ret = unsafe { &*this_arg.inner }.to_broadcaster_value_sat();
1366         ret
1367 }
1368
1369 /// The value to be sent to the counterparty
1370 #[must_use]
1371 #[no_mangle]
1372 pub extern "C" fn CommitmentTransaction_to_countersignatory_value_sat(this_arg: &CommitmentTransaction) -> u64 {
1373         let mut ret = unsafe { &*this_arg.inner }.to_countersignatory_value_sat();
1374         ret
1375 }
1376
1377 /// The feerate paid per 1000-weight-unit in this commitment transaction.
1378 #[must_use]
1379 #[no_mangle]
1380 pub extern "C" fn CommitmentTransaction_feerate_per_kw(this_arg: &CommitmentTransaction) -> u32 {
1381         let mut ret = unsafe { &*this_arg.inner }.feerate_per_kw();
1382         ret
1383 }
1384
1385 /// Trust our pre-built transaction and derived transaction creation public keys.
1386 ///
1387 /// Applies a wrapper which allows access to these fields.
1388 ///
1389 /// This should only be used if you fully trust the builder of this object.  It should not
1390 ///\tbe used by an external signer - instead use the verify function.
1391 #[must_use]
1392 #[no_mangle]
1393 pub extern "C" fn CommitmentTransaction_trust(this_arg: &CommitmentTransaction) -> crate::lightning::ln::chan_utils::TrustedCommitmentTransaction {
1394         let mut ret = unsafe { &*this_arg.inner }.trust();
1395         crate::lightning::ln::chan_utils::TrustedCommitmentTransaction { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1396 }
1397
1398 /// Verify our pre-built transaction and derived transaction creation public keys.
1399 ///
1400 /// Applies a wrapper which allows access to these fields.
1401 ///
1402 /// An external validating signer must call this method before signing
1403 /// or using the built transaction.
1404 #[must_use]
1405 #[no_mangle]
1406 pub extern "C" fn CommitmentTransaction_verify(this_arg: &CommitmentTransaction, channel_parameters: &crate::lightning::ln::chan_utils::DirectedChannelTransactionParameters, broadcaster_keys: &crate::lightning::ln::chan_utils::ChannelPublicKeys, countersignatory_keys: &crate::lightning::ln::chan_utils::ChannelPublicKeys) -> crate::c_types::derived::CResult_TrustedCommitmentTransactionNoneZ {
1407         let mut ret = unsafe { &*this_arg.inner }.verify(unsafe { &*channel_parameters.inner }, unsafe { &*broadcaster_keys.inner }, unsafe { &*countersignatory_keys.inner }, secp256k1::SECP256K1);
1408         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::chan_utils::TrustedCommitmentTransaction { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1409         local_ret
1410 }
1411
1412
1413 use lightning::ln::chan_utils::TrustedCommitmentTransaction as nativeTrustedCommitmentTransactionImport;
1414 type nativeTrustedCommitmentTransaction = nativeTrustedCommitmentTransactionImport<'static>;
1415
1416 /// A wrapper on CommitmentTransaction indicating that the derived fields (the built bitcoin
1417 /// transaction and the transaction creation keys) are trusted.
1418 ///
1419 /// See trust() and verify() functions on CommitmentTransaction.
1420 ///
1421 /// This structure implements Deref.
1422 #[must_use]
1423 #[repr(C)]
1424 pub struct TrustedCommitmentTransaction {
1425         /// A pointer to the opaque Rust object.
1426
1427         /// Nearly everywhere, inner must be non-null, however in places where
1428         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1429         pub inner: *mut nativeTrustedCommitmentTransaction,
1430         /// Indicates that this is the only struct which contains the same pointer.
1431
1432         /// Rust functions which take ownership of an object provided via an argument require
1433         /// this to be true and invalidate the object pointed to by inner.
1434         pub is_owned: bool,
1435 }
1436
1437 impl Drop for TrustedCommitmentTransaction {
1438         fn drop(&mut self) {
1439                 if self.is_owned && !<*mut nativeTrustedCommitmentTransaction>::is_null(self.inner) {
1440                         let _ = unsafe { Box::from_raw(self.inner) };
1441                 }
1442         }
1443 }
1444 /// Frees any resources used by the TrustedCommitmentTransaction, if is_owned is set and inner is non-NULL.
1445 #[no_mangle]
1446 pub extern "C" fn TrustedCommitmentTransaction_free(this_obj: TrustedCommitmentTransaction) { }
1447 #[allow(unused)]
1448 /// Used only if an object of this type is returned as a trait impl by a method
1449 extern "C" fn TrustedCommitmentTransaction_free_void(this_ptr: *mut c_void) {
1450         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeTrustedCommitmentTransaction); }
1451 }
1452 #[allow(unused)]
1453 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1454 impl TrustedCommitmentTransaction {
1455         pub(crate) fn take_inner(mut self) -> *mut nativeTrustedCommitmentTransaction {
1456                 assert!(self.is_owned);
1457                 let ret = self.inner;
1458                 self.inner = std::ptr::null_mut();
1459                 ret
1460         }
1461 }
1462 /// The transaction ID of the built Bitcoin transaction
1463 #[must_use]
1464 #[no_mangle]
1465 pub extern "C" fn TrustedCommitmentTransaction_txid(this_arg: &TrustedCommitmentTransaction) -> crate::c_types::ThirtyTwoBytes {
1466         let mut ret = unsafe { &*this_arg.inner }.txid();
1467         crate::c_types::ThirtyTwoBytes { data: ret.into_inner() }
1468 }
1469
1470 /// The pre-built Bitcoin commitment transaction
1471 #[must_use]
1472 #[no_mangle]
1473 pub extern "C" fn TrustedCommitmentTransaction_built_transaction(this_arg: &TrustedCommitmentTransaction) -> crate::lightning::ln::chan_utils::BuiltCommitmentTransaction {
1474         let mut ret = unsafe { &*this_arg.inner }.built_transaction();
1475         crate::lightning::ln::chan_utils::BuiltCommitmentTransaction { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
1476 }
1477
1478 /// The pre-calculated transaction creation public keys.
1479 #[must_use]
1480 #[no_mangle]
1481 pub extern "C" fn TrustedCommitmentTransaction_keys(this_arg: &TrustedCommitmentTransaction) -> crate::lightning::ln::chan_utils::TxCreationKeys {
1482         let mut ret = unsafe { &*this_arg.inner }.keys();
1483         crate::lightning::ln::chan_utils::TxCreationKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
1484 }
1485
1486 /// Get a signature for each HTLC which was included in the commitment transaction (ie for
1487 /// which HTLCOutputInCommitment::transaction_output_index.is_some()).
1488 ///
1489 /// The returned Vec has one entry for each HTLC, and in the same order.
1490 #[must_use]
1491 #[no_mangle]
1492 pub extern "C" fn TrustedCommitmentTransaction_get_htlc_sigs(this_arg: &TrustedCommitmentTransaction, htlc_base_key: *const [u8; 32], channel_parameters: &crate::lightning::ln::chan_utils::DirectedChannelTransactionParameters) -> crate::c_types::derived::CResult_CVec_SignatureZNoneZ {
1493         let mut ret = unsafe { &*this_arg.inner }.get_htlc_sigs(&::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *htlc_base_key}[..]).unwrap(), unsafe { &*channel_parameters.inner }, secp256k1::SECP256K1);
1494         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = Vec::new(); for mut item in o.drain(..) { local_ret_0.push( { crate::c_types::Signature::from_rust(&item) }); }; local_ret_0.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1495         local_ret
1496 }
1497
1498 /// Get the transaction number obscure factor
1499 #[no_mangle]
1500 pub extern "C" fn get_commitment_transaction_number_obscure_factor(mut broadcaster_payment_basepoint: crate::c_types::PublicKey, mut countersignatory_payment_basepoint: crate::c_types::PublicKey, mut outbound_from_broadcaster: bool) -> u64 {
1501         let mut ret = lightning::ln::chan_utils::get_commitment_transaction_number_obscure_factor(&broadcaster_payment_basepoint.into_rust(), &countersignatory_payment_basepoint.into_rust(), outbound_from_broadcaster);
1502         ret
1503 }
1504