1 // This file is Copyright its original authors, visible in version control
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
10 //! Various utilities for building scripts and deriving keys related to channels. These are
11 //! largely of interest for those implementing the traits on [`chain::keysinterface`] by hand.
13 use bitcoin::blockdata::script::{Script,Builder};
14 use bitcoin::blockdata::opcodes;
15 use bitcoin::blockdata::transaction::{TxIn,TxOut,OutPoint,Transaction, EcdsaSighashType};
16 use bitcoin::util::sighash;
17 use bitcoin::util::address::Payload;
19 use bitcoin::hashes::{Hash, HashEngine};
20 use bitcoin::hashes::sha256::Hash as Sha256;
21 use bitcoin::hashes::ripemd160::Hash as Ripemd160;
22 use bitcoin::hash_types::{Txid, PubkeyHash};
24 use crate::chain::keysinterface::EntropySource;
25 use crate::ln::{PaymentHash, PaymentPreimage};
26 use crate::ln::msgs::DecodeError;
27 use crate::util::ser::{Readable, Writeable, Writer};
28 use crate::util::transaction_utils;
30 use bitcoin::secp256k1::{SecretKey, PublicKey, Scalar};
31 use bitcoin::secp256k1::{Secp256k1, ecdsa::Signature, Message};
32 use bitcoin::{PackedLockTime, secp256k1, Sequence, Witness};
33 use bitcoin::PublicKey as BitcoinPublicKey;
36 use crate::prelude::*;
38 use crate::ln::chan_utils;
39 use crate::util::transaction_utils::sort_outputs;
40 use crate::ln::channel::{INITIAL_COMMITMENT_NUMBER, ANCHOR_OUTPUT_VALUE_SATOSHI};
43 use crate::util::crypto::{sign, sign_with_aux_rand};
45 /// Maximum number of one-way in-flight HTLC (protocol-level value).
46 pub const MAX_HTLCS: u16 = 483;
47 /// The weight of a BIP141 witnessScript for a BOLT3's "offered HTLC output" on a commitment transaction, non-anchor variant.
48 pub const OFFERED_HTLC_SCRIPT_WEIGHT: usize = 133;
49 /// The weight of a BIP141 witnessScript for a BOLT3's "offered HTLC output" on a commitment transaction, anchor variant.
50 pub const OFFERED_HTLC_SCRIPT_WEIGHT_ANCHORS: usize = 136;
52 /// The weight of a BIP141 witnessScript for a BOLT3's "received HTLC output" can vary in function of its CLTV argument value.
53 /// We define a range that encompasses both its non-anchors and anchors variants.
54 pub(crate) const MIN_ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 136;
55 /// The weight of a BIP141 witnessScript for a BOLT3's "received HTLC output" can vary in function of its CLTV argument value.
56 /// We define a range that encompasses both its non-anchors and anchors variants.
57 /// This is the maximum post-anchor value.
58 pub const MAX_ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 143;
60 /// Gets the weight for an HTLC-Success transaction.
62 pub fn htlc_success_tx_weight(opt_anchors: bool) -> u64 {
63 const HTLC_SUCCESS_TX_WEIGHT: u64 = 703;
64 const HTLC_SUCCESS_ANCHOR_TX_WEIGHT: u64 = 706;
65 if opt_anchors { HTLC_SUCCESS_ANCHOR_TX_WEIGHT } else { HTLC_SUCCESS_TX_WEIGHT }
68 /// Gets the weight for an HTLC-Timeout transaction.
70 pub fn htlc_timeout_tx_weight(opt_anchors: bool) -> u64 {
71 const HTLC_TIMEOUT_TX_WEIGHT: u64 = 663;
72 const HTLC_TIMEOUT_ANCHOR_TX_WEIGHT: u64 = 666;
73 if opt_anchors { HTLC_TIMEOUT_ANCHOR_TX_WEIGHT } else { HTLC_TIMEOUT_TX_WEIGHT }
76 /// Describes the type of HTLC claim as determined by analyzing the witness.
77 #[derive(PartialEq, Eq)]
79 /// Claims an offered output on a commitment transaction through the timeout path.
81 /// Claims an offered output on a commitment transaction through the success path.
83 /// Claims an accepted output on a commitment transaction through the timeout path.
85 /// Claims an accepted output on a commitment transaction through the success path.
87 /// Claims an offered/accepted output on a commitment transaction through the revocation path.
92 /// Check if a given input witness attempts to claim a HTLC.
93 pub fn from_witness(witness: &Witness) -> Option<Self> {
94 debug_assert_eq!(OFFERED_HTLC_SCRIPT_WEIGHT_ANCHORS, MIN_ACCEPTED_HTLC_SCRIPT_WEIGHT);
95 if witness.len() < 2 {
98 let witness_script = witness.last().unwrap();
99 let second_to_last = witness.second_to_last().unwrap();
100 if witness_script.len() == OFFERED_HTLC_SCRIPT_WEIGHT {
101 if witness.len() == 3 && second_to_last.len() == 33 {
102 // <revocation sig> <revocationpubkey> <witness_script>
103 Some(Self::Revocation)
104 } else if witness.len() == 3 && second_to_last.len() == 32 {
105 // <remotehtlcsig> <payment_preimage> <witness_script>
106 Some(Self::OfferedPreimage)
107 } else if witness.len() == 5 && second_to_last.len() == 0 {
108 // 0 <remotehtlcsig> <localhtlcsig> <> <witness_script>
109 Some(Self::OfferedTimeout)
113 } else if witness_script.len() == OFFERED_HTLC_SCRIPT_WEIGHT_ANCHORS {
114 // It's possible for the weight of `offered_htlc_script` and `accepted_htlc_script` to
115 // match so we check for both here.
116 if witness.len() == 3 && second_to_last.len() == 33 {
117 // <revocation sig> <revocationpubkey> <witness_script>
118 Some(Self::Revocation)
119 } else if witness.len() == 3 && second_to_last.len() == 32 {
120 // <remotehtlcsig> <payment_preimage> <witness_script>
121 Some(Self::OfferedPreimage)
122 } else if witness.len() == 5 && second_to_last.len() == 0 {
123 // 0 <remotehtlcsig> <localhtlcsig> <> <witness_script>
124 Some(Self::OfferedTimeout)
125 } else if witness.len() == 3 && second_to_last.len() == 0 {
126 // <remotehtlcsig> <> <witness_script>
127 Some(Self::AcceptedTimeout)
128 } else if witness.len() == 5 && second_to_last.len() == 32 {
129 // 0 <remotehtlcsig> <localhtlcsig> <payment_preimage> <witness_script>
130 Some(Self::AcceptedPreimage)
134 } else if witness_script.len() > MIN_ACCEPTED_HTLC_SCRIPT_WEIGHT &&
135 witness_script.len() <= MAX_ACCEPTED_HTLC_SCRIPT_WEIGHT {
136 // Handle remaining range of ACCEPTED_HTLC_SCRIPT_WEIGHT.
137 if witness.len() == 3 && second_to_last.len() == 33 {
138 // <revocation sig> <revocationpubkey> <witness_script>
139 Some(Self::Revocation)
140 } else if witness.len() == 3 && second_to_last.len() == 0 {
141 // <remotehtlcsig> <> <witness_script>
142 Some(Self::AcceptedTimeout)
143 } else if witness.len() == 5 && second_to_last.len() == 32 {
144 // 0 <remotehtlcsig> <localhtlcsig> <payment_preimage> <witness_script>
145 Some(Self::AcceptedPreimage)
155 // Various functions for key derivation and transaction creation for use within channels. Primarily
156 // used in Channel and ChannelMonitor.
158 /// Build the commitment secret from the seed and the commitment number
159 pub fn build_commitment_secret(commitment_seed: &[u8; 32], idx: u64) -> [u8; 32] {
160 let mut res: [u8; 32] = commitment_seed.clone();
163 if idx & (1 << bitpos) == (1 << bitpos) {
164 res[bitpos / 8] ^= 1 << (bitpos & 7);
165 res = Sha256::hash(&res).into_inner();
171 /// Build a closing transaction
172 pub fn build_closing_transaction(to_holder_value_sat: u64, to_counterparty_value_sat: u64, to_holder_script: Script, to_counterparty_script: Script, funding_outpoint: OutPoint) -> Transaction {
174 let mut ins: Vec<TxIn> = Vec::new();
176 previous_output: funding_outpoint,
177 script_sig: Script::new(),
178 sequence: Sequence::MAX,
179 witness: Witness::new(),
184 let mut txouts: Vec<(TxOut, ())> = Vec::new();
186 if to_counterparty_value_sat > 0 {
188 script_pubkey: to_counterparty_script,
189 value: to_counterparty_value_sat
193 if to_holder_value_sat > 0 {
195 script_pubkey: to_holder_script,
196 value: to_holder_value_sat
200 transaction_utils::sort_outputs(&mut txouts, |_, _| { cmp::Ordering::Equal }); // Ordering doesnt matter if they used our pubkey...
202 let mut outputs: Vec<TxOut> = Vec::new();
203 for out in txouts.drain(..) {
209 lock_time: PackedLockTime::ZERO,
215 /// Implements the per-commitment secret storage scheme from
216 /// [BOLT 3](https://github.com/lightning/bolts/blob/dcbf8583976df087c79c3ce0b535311212e6812d/03-transactions.md#efficient-per-commitment-secret-storage).
218 /// Allows us to keep track of all of the revocation secrets of our counterparty in just 50*32 bytes
221 pub struct CounterpartyCommitmentSecrets {
222 old_secrets: [([u8; 32], u64); 49],
225 impl Eq for CounterpartyCommitmentSecrets {}
226 impl PartialEq for CounterpartyCommitmentSecrets {
227 fn eq(&self, other: &Self) -> bool {
228 for (&(ref secret, ref idx), &(ref o_secret, ref o_idx)) in self.old_secrets.iter().zip(other.old_secrets.iter()) {
229 if secret != o_secret || idx != o_idx {
237 impl CounterpartyCommitmentSecrets {
238 /// Creates a new empty `CounterpartyCommitmentSecrets` structure.
239 pub fn new() -> Self {
240 Self { old_secrets: [([0; 32], 1 << 48); 49], }
244 fn place_secret(idx: u64) -> u8 {
246 if idx & (1 << i) == (1 << i) {
253 /// Returns the minimum index of all stored secrets. Note that indexes start
254 /// at 1 << 48 and get decremented by one for each new secret.
255 pub fn get_min_seen_secret(&self) -> u64 {
256 //TODO This can be optimized?
257 let mut min = 1 << 48;
258 for &(_, idx) in self.old_secrets.iter() {
267 fn derive_secret(secret: [u8; 32], bits: u8, idx: u64) -> [u8; 32] {
268 let mut res: [u8; 32] = secret;
270 let bitpos = bits - 1 - i;
271 if idx & (1 << bitpos) == (1 << bitpos) {
272 res[(bitpos / 8) as usize] ^= 1 << (bitpos & 7);
273 res = Sha256::hash(&res).into_inner();
279 /// Inserts the `secret` at `idx`. Returns `Ok(())` if the secret
280 /// was generated in accordance with BOLT 3 and is consistent with previous secrets.
281 pub fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), ()> {
282 let pos = Self::place_secret(idx);
284 let (old_secret, old_idx) = self.old_secrets[i as usize];
285 if Self::derive_secret(secret, pos, old_idx) != old_secret {
289 if self.get_min_seen_secret() <= idx {
292 self.old_secrets[pos as usize] = (secret, idx);
296 /// Returns the secret at `idx`.
297 /// Returns `None` if `idx` is < [`CounterpartyCommitmentSecrets::get_min_seen_secret`].
298 pub fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
299 for i in 0..self.old_secrets.len() {
300 if (idx & (!((1 << i) - 1))) == self.old_secrets[i].1 {
301 return Some(Self::derive_secret(self.old_secrets[i].0, i as u8, idx))
304 assert!(idx < self.get_min_seen_secret());
309 impl Writeable for CounterpartyCommitmentSecrets {
310 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
311 for &(ref secret, ref idx) in self.old_secrets.iter() {
312 writer.write_all(secret)?;
313 writer.write_all(&idx.to_be_bytes())?;
315 write_tlv_fields!(writer, {});
319 impl Readable for CounterpartyCommitmentSecrets {
320 fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
321 let mut old_secrets = [([0; 32], 1 << 48); 49];
322 for &mut (ref mut secret, ref mut idx) in old_secrets.iter_mut() {
323 *secret = Readable::read(reader)?;
324 *idx = Readable::read(reader)?;
326 read_tlv_fields!(reader, {});
327 Ok(Self { old_secrets })
331 /// Derives a per-commitment-transaction private key (eg an htlc key or delayed_payment key)
332 /// from the base secret and the per_commitment_point.
333 pub fn derive_private_key<T: secp256k1::Signing>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, base_secret: &SecretKey) -> SecretKey {
334 let mut sha = Sha256::engine();
335 sha.input(&per_commitment_point.serialize());
336 sha.input(&PublicKey::from_secret_key(&secp_ctx, &base_secret).serialize());
337 let res = Sha256::from_engine(sha).into_inner();
339 base_secret.clone().add_tweak(&Scalar::from_be_bytes(res).unwrap())
340 .expect("Addition only fails if the tweak is the inverse of the key. This is not possible when the tweak contains the hash of the key.")
343 /// Derives a per-commitment-transaction public key (eg an htlc key or a delayed_payment key)
344 /// from the base point and the per_commitment_key. This is the public equivalent of
345 /// derive_private_key - using only public keys to derive a public key instead of private keys.
346 pub fn derive_public_key<T: secp256k1::Signing>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, base_point: &PublicKey) -> PublicKey {
347 let mut sha = Sha256::engine();
348 sha.input(&per_commitment_point.serialize());
349 sha.input(&base_point.serialize());
350 let res = Sha256::from_engine(sha).into_inner();
352 let hashkey = PublicKey::from_secret_key(&secp_ctx,
353 &SecretKey::from_slice(&res).expect("Hashes should always be valid keys unless SHA-256 is broken"));
354 base_point.combine(&hashkey)
355 .expect("Addition only fails if the tweak is the inverse of the key. This is not possible when the tweak contains the hash of the key.")
358 /// Derives a per-commitment-transaction revocation key from its constituent parts.
360 /// Only the cheating participant owns a valid witness to propagate a revoked
361 /// commitment transaction, thus per_commitment_secret always come from cheater
362 /// and revocation_base_secret always come from punisher, which is the broadcaster
363 /// of the transaction spending with this key knowledge.
364 pub fn derive_private_revocation_key<T: secp256k1::Signing>(secp_ctx: &Secp256k1<T>,
365 per_commitment_secret: &SecretKey, countersignatory_revocation_base_secret: &SecretKey)
367 let countersignatory_revocation_base_point = PublicKey::from_secret_key(&secp_ctx, &countersignatory_revocation_base_secret);
368 let per_commitment_point = PublicKey::from_secret_key(&secp_ctx, &per_commitment_secret);
370 let rev_append_commit_hash_key = {
371 let mut sha = Sha256::engine();
372 sha.input(&countersignatory_revocation_base_point.serialize());
373 sha.input(&per_commitment_point.serialize());
375 Sha256::from_engine(sha).into_inner()
377 let commit_append_rev_hash_key = {
378 let mut sha = Sha256::engine();
379 sha.input(&per_commitment_point.serialize());
380 sha.input(&countersignatory_revocation_base_point.serialize());
382 Sha256::from_engine(sha).into_inner()
385 let countersignatory_contrib = countersignatory_revocation_base_secret.clone().mul_tweak(&Scalar::from_be_bytes(rev_append_commit_hash_key).unwrap())
386 .expect("Multiplying a secret key by a hash is expected to never fail per secp256k1 docs");
387 let broadcaster_contrib = per_commitment_secret.clone().mul_tweak(&Scalar::from_be_bytes(commit_append_rev_hash_key).unwrap())
388 .expect("Multiplying a secret key by a hash is expected to never fail per secp256k1 docs");
389 countersignatory_contrib.add_tweak(&Scalar::from_be_bytes(broadcaster_contrib.secret_bytes()).unwrap())
390 .expect("Addition only fails if the tweak is the inverse of the key. This is not possible when the tweak commits to the key.")
393 /// Derives a per-commitment-transaction revocation public key from its constituent parts. This is
394 /// the public equivalend of derive_private_revocation_key - using only public keys to derive a
395 /// public key instead of private keys.
397 /// Only the cheating participant owns a valid witness to propagate a revoked
398 /// commitment transaction, thus per_commitment_point always come from cheater
399 /// and revocation_base_point always come from punisher, which is the broadcaster
400 /// of the transaction spending with this key knowledge.
402 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
403 /// generated (ie our own).
404 pub fn derive_public_revocation_key<T: secp256k1::Verification>(secp_ctx: &Secp256k1<T>,
405 per_commitment_point: &PublicKey, countersignatory_revocation_base_point: &PublicKey)
407 let rev_append_commit_hash_key = {
408 let mut sha = Sha256::engine();
409 sha.input(&countersignatory_revocation_base_point.serialize());
410 sha.input(&per_commitment_point.serialize());
412 Sha256::from_engine(sha).into_inner()
414 let commit_append_rev_hash_key = {
415 let mut sha = Sha256::engine();
416 sha.input(&per_commitment_point.serialize());
417 sha.input(&countersignatory_revocation_base_point.serialize());
419 Sha256::from_engine(sha).into_inner()
422 let countersignatory_contrib = countersignatory_revocation_base_point.clone().mul_tweak(&secp_ctx, &Scalar::from_be_bytes(rev_append_commit_hash_key).unwrap())
423 .expect("Multiplying a valid public key by a hash is expected to never fail per secp256k1 docs");
424 let broadcaster_contrib = per_commitment_point.clone().mul_tweak(&secp_ctx, &Scalar::from_be_bytes(commit_append_rev_hash_key).unwrap())
425 .expect("Multiplying a valid public key by a hash is expected to never fail per secp256k1 docs");
426 countersignatory_contrib.combine(&broadcaster_contrib)
427 .expect("Addition only fails if the tweak is the inverse of the key. This is not possible when the tweak commits to the key.")
430 /// The set of public keys which are used in the creation of one commitment transaction.
431 /// These are derived from the channel base keys and per-commitment data.
433 /// A broadcaster key is provided from potential broadcaster of the computed transaction.
434 /// A countersignatory key is coming from a protocol participant unable to broadcast the
437 /// These keys are assumed to be good, either because the code derived them from
438 /// channel basepoints via the new function, or they were obtained via
439 /// CommitmentTransaction.trust().keys() because we trusted the source of the
440 /// pre-calculated keys.
441 #[derive(PartialEq, Eq, Clone)]
442 pub struct TxCreationKeys {
443 /// The broadcaster's per-commitment public key which was used to derive the other keys.
444 pub per_commitment_point: PublicKey,
445 /// The revocation key which is used to allow the broadcaster of the commitment
446 /// transaction to provide their counterparty the ability to punish them if they broadcast
448 pub revocation_key: PublicKey,
449 /// Broadcaster's HTLC Key
450 pub broadcaster_htlc_key: PublicKey,
451 /// Countersignatory's HTLC Key
452 pub countersignatory_htlc_key: PublicKey,
453 /// Broadcaster's Payment Key (which isn't allowed to be spent from for some delay)
454 pub broadcaster_delayed_payment_key: PublicKey,
457 impl_writeable_tlv_based!(TxCreationKeys, {
458 (0, per_commitment_point, required),
459 (2, revocation_key, required),
460 (4, broadcaster_htlc_key, required),
461 (6, countersignatory_htlc_key, required),
462 (8, broadcaster_delayed_payment_key, required),
465 /// One counterparty's public keys which do not change over the life of a channel.
466 #[derive(Clone, Debug, PartialEq, Eq)]
467 pub struct ChannelPublicKeys {
468 /// The public key which is used to sign all commitment transactions, as it appears in the
469 /// on-chain channel lock-in 2-of-2 multisig output.
470 pub funding_pubkey: PublicKey,
471 /// The base point which is used (with derive_public_revocation_key) to derive per-commitment
472 /// revocation keys. This is combined with the per-commitment-secret generated by the
473 /// counterparty to create a secret which the counterparty can reveal to revoke previous
475 pub revocation_basepoint: PublicKey,
476 /// The public key on which the non-broadcaster (ie the countersignatory) receives an immediately
477 /// spendable primary channel balance on the broadcaster's commitment transaction. This key is
478 /// static across every commitment transaction.
479 pub payment_point: PublicKey,
480 /// The base point which is used (with derive_public_key) to derive a per-commitment payment
481 /// public key which receives non-HTLC-encumbered funds which are only available for spending
482 /// after some delay (or can be claimed via the revocation path).
483 pub delayed_payment_basepoint: PublicKey,
484 /// The base point which is used (with derive_public_key) to derive a per-commitment public key
485 /// which is used to encumber HTLC-in-flight outputs.
486 pub htlc_basepoint: PublicKey,
489 impl_writeable_tlv_based!(ChannelPublicKeys, {
490 (0, funding_pubkey, required),
491 (2, revocation_basepoint, required),
492 (4, payment_point, required),
493 (6, delayed_payment_basepoint, required),
494 (8, htlc_basepoint, required),
497 impl TxCreationKeys {
498 /// Create per-state keys from channel base points and the per-commitment point.
499 /// Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
500 pub fn derive_new<T: secp256k1::Signing + secp256k1::Verification>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, broadcaster_delayed_payment_base: &PublicKey, broadcaster_htlc_base: &PublicKey, countersignatory_revocation_base: &PublicKey, countersignatory_htlc_base: &PublicKey) -> TxCreationKeys {
502 per_commitment_point: per_commitment_point.clone(),
503 revocation_key: derive_public_revocation_key(&secp_ctx, &per_commitment_point, &countersignatory_revocation_base),
504 broadcaster_htlc_key: derive_public_key(&secp_ctx, &per_commitment_point, &broadcaster_htlc_base),
505 countersignatory_htlc_key: derive_public_key(&secp_ctx, &per_commitment_point, &countersignatory_htlc_base),
506 broadcaster_delayed_payment_key: derive_public_key(&secp_ctx, &per_commitment_point, &broadcaster_delayed_payment_base),
510 /// Generate per-state keys from channel static keys.
511 /// Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
512 pub fn from_channel_static_keys<T: secp256k1::Signing + secp256k1::Verification>(per_commitment_point: &PublicKey, broadcaster_keys: &ChannelPublicKeys, countersignatory_keys: &ChannelPublicKeys, secp_ctx: &Secp256k1<T>) -> TxCreationKeys {
513 TxCreationKeys::derive_new(
515 &per_commitment_point,
516 &broadcaster_keys.delayed_payment_basepoint,
517 &broadcaster_keys.htlc_basepoint,
518 &countersignatory_keys.revocation_basepoint,
519 &countersignatory_keys.htlc_basepoint,
524 /// The maximum length of a script returned by get_revokeable_redeemscript.
525 // Calculated as 6 bytes of opcodes, 1 byte push plus 2 bytes for contest_delay, and two public
526 // keys of 33 bytes (+ 1 push).
527 pub const REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH: usize = 6 + 3 + 34*2;
529 /// A script either spendable by the revocation
530 /// key or the broadcaster_delayed_payment_key and satisfying the relative-locktime OP_CSV constrain.
531 /// Encumbering a `to_holder` output on a commitment transaction or 2nd-stage HTLC transactions.
532 pub fn get_revokeable_redeemscript(revocation_key: &PublicKey, contest_delay: u16, broadcaster_delayed_payment_key: &PublicKey) -> Script {
533 let res = Builder::new().push_opcode(opcodes::all::OP_IF)
534 .push_slice(&revocation_key.serialize())
535 .push_opcode(opcodes::all::OP_ELSE)
536 .push_int(contest_delay as i64)
537 .push_opcode(opcodes::all::OP_CSV)
538 .push_opcode(opcodes::all::OP_DROP)
539 .push_slice(&broadcaster_delayed_payment_key.serialize())
540 .push_opcode(opcodes::all::OP_ENDIF)
541 .push_opcode(opcodes::all::OP_CHECKSIG)
543 debug_assert!(res.len() <= REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH);
547 /// Information about an HTLC as it appears in a commitment transaction
548 #[derive(Clone, Debug, PartialEq, Eq)]
549 pub struct HTLCOutputInCommitment {
550 /// Whether the HTLC was "offered" (ie outbound in relation to this commitment transaction).
551 /// Note that this is not the same as whether it is ountbound *from us*. To determine that you
552 /// need to compare this value to whether the commitment transaction in question is that of
553 /// the counterparty or our own.
555 /// The value, in msat, of the HTLC. The value as it appears in the commitment transaction is
556 /// this divided by 1000.
557 pub amount_msat: u64,
558 /// The CLTV lock-time at which this HTLC expires.
559 pub cltv_expiry: u32,
560 /// The hash of the preimage which unlocks this HTLC.
561 pub payment_hash: PaymentHash,
562 /// The position within the commitment transactions' outputs. This may be None if the value is
563 /// below the dust limit (in which case no output appears in the commitment transaction and the
564 /// value is spent to additional transaction fees).
565 pub transaction_output_index: Option<u32>,
568 impl_writeable_tlv_based!(HTLCOutputInCommitment, {
569 (0, offered, required),
570 (2, amount_msat, required),
571 (4, cltv_expiry, required),
572 (6, payment_hash, required),
573 (8, transaction_output_index, option),
577 pub(crate) fn get_htlc_redeemscript_with_explicit_keys(htlc: &HTLCOutputInCommitment, opt_anchors: bool, broadcaster_htlc_key: &PublicKey, countersignatory_htlc_key: &PublicKey, revocation_key: &PublicKey) -> Script {
578 let payment_hash160 = Ripemd160::hash(&htlc.payment_hash.0[..]).into_inner();
580 let mut bldr = Builder::new().push_opcode(opcodes::all::OP_DUP)
581 .push_opcode(opcodes::all::OP_HASH160)
582 .push_slice(&PubkeyHash::hash(&revocation_key.serialize())[..])
583 .push_opcode(opcodes::all::OP_EQUAL)
584 .push_opcode(opcodes::all::OP_IF)
585 .push_opcode(opcodes::all::OP_CHECKSIG)
586 .push_opcode(opcodes::all::OP_ELSE)
587 .push_slice(&countersignatory_htlc_key.serialize()[..])
588 .push_opcode(opcodes::all::OP_SWAP)
589 .push_opcode(opcodes::all::OP_SIZE)
591 .push_opcode(opcodes::all::OP_EQUAL)
592 .push_opcode(opcodes::all::OP_NOTIF)
593 .push_opcode(opcodes::all::OP_DROP)
595 .push_opcode(opcodes::all::OP_SWAP)
596 .push_slice(&broadcaster_htlc_key.serialize()[..])
598 .push_opcode(opcodes::all::OP_CHECKMULTISIG)
599 .push_opcode(opcodes::all::OP_ELSE)
600 .push_opcode(opcodes::all::OP_HASH160)
601 .push_slice(&payment_hash160)
602 .push_opcode(opcodes::all::OP_EQUALVERIFY)
603 .push_opcode(opcodes::all::OP_CHECKSIG)
604 .push_opcode(opcodes::all::OP_ENDIF);
606 bldr = bldr.push_opcode(opcodes::all::OP_PUSHNUM_1)
607 .push_opcode(opcodes::all::OP_CSV)
608 .push_opcode(opcodes::all::OP_DROP);
610 bldr.push_opcode(opcodes::all::OP_ENDIF)
613 let mut bldr = Builder::new().push_opcode(opcodes::all::OP_DUP)
614 .push_opcode(opcodes::all::OP_HASH160)
615 .push_slice(&PubkeyHash::hash(&revocation_key.serialize())[..])
616 .push_opcode(opcodes::all::OP_EQUAL)
617 .push_opcode(opcodes::all::OP_IF)
618 .push_opcode(opcodes::all::OP_CHECKSIG)
619 .push_opcode(opcodes::all::OP_ELSE)
620 .push_slice(&countersignatory_htlc_key.serialize()[..])
621 .push_opcode(opcodes::all::OP_SWAP)
622 .push_opcode(opcodes::all::OP_SIZE)
624 .push_opcode(opcodes::all::OP_EQUAL)
625 .push_opcode(opcodes::all::OP_IF)
626 .push_opcode(opcodes::all::OP_HASH160)
627 .push_slice(&payment_hash160)
628 .push_opcode(opcodes::all::OP_EQUALVERIFY)
630 .push_opcode(opcodes::all::OP_SWAP)
631 .push_slice(&broadcaster_htlc_key.serialize()[..])
633 .push_opcode(opcodes::all::OP_CHECKMULTISIG)
634 .push_opcode(opcodes::all::OP_ELSE)
635 .push_opcode(opcodes::all::OP_DROP)
636 .push_int(htlc.cltv_expiry as i64)
637 .push_opcode(opcodes::all::OP_CLTV)
638 .push_opcode(opcodes::all::OP_DROP)
639 .push_opcode(opcodes::all::OP_CHECKSIG)
640 .push_opcode(opcodes::all::OP_ENDIF);
642 bldr = bldr.push_opcode(opcodes::all::OP_PUSHNUM_1)
643 .push_opcode(opcodes::all::OP_CSV)
644 .push_opcode(opcodes::all::OP_DROP);
646 bldr.push_opcode(opcodes::all::OP_ENDIF)
651 /// Gets the witness redeemscript for an HTLC output in a commitment transaction. Note that htlc
652 /// does not need to have its previous_output_index filled.
654 pub fn get_htlc_redeemscript(htlc: &HTLCOutputInCommitment, opt_anchors: bool, keys: &TxCreationKeys) -> Script {
655 get_htlc_redeemscript_with_explicit_keys(htlc, opt_anchors, &keys.broadcaster_htlc_key, &keys.countersignatory_htlc_key, &keys.revocation_key)
658 /// Gets the redeemscript for a funding output from the two funding public keys.
659 /// Note that the order of funding public keys does not matter.
660 pub fn make_funding_redeemscript(broadcaster: &PublicKey, countersignatory: &PublicKey) -> Script {
661 let broadcaster_funding_key = broadcaster.serialize();
662 let countersignatory_funding_key = countersignatory.serialize();
664 make_funding_redeemscript_from_slices(&broadcaster_funding_key, &countersignatory_funding_key)
667 pub(crate) fn make_funding_redeemscript_from_slices(broadcaster_funding_key: &[u8], countersignatory_funding_key: &[u8]) -> Script {
668 let builder = Builder::new().push_opcode(opcodes::all::OP_PUSHNUM_2);
669 if broadcaster_funding_key[..] < countersignatory_funding_key[..] {
670 builder.push_slice(broadcaster_funding_key)
671 .push_slice(countersignatory_funding_key)
673 builder.push_slice(countersignatory_funding_key)
674 .push_slice(broadcaster_funding_key)
675 }.push_opcode(opcodes::all::OP_PUSHNUM_2).push_opcode(opcodes::all::OP_CHECKMULTISIG).into_script()
678 /// Builds an unsigned HTLC-Success or HTLC-Timeout transaction from the given channel and HTLC
679 /// parameters. This is used by [`TrustedCommitmentTransaction::get_htlc_sigs`] to fetch the
680 /// transaction which needs signing, and can be used to construct an HTLC transaction which is
681 /// broadcastable given a counterparty HTLC signature.
683 /// Panics if htlc.transaction_output_index.is_none() (as such HTLCs do not appear in the
684 /// commitment transaction).
685 pub fn build_htlc_transaction(commitment_txid: &Txid, feerate_per_kw: u32, contest_delay: u16, htlc: &HTLCOutputInCommitment, opt_anchors: bool, use_non_zero_fee_anchors: bool, broadcaster_delayed_payment_key: &PublicKey, revocation_key: &PublicKey) -> Transaction {
686 let mut txins: Vec<TxIn> = Vec::new();
687 txins.push(build_htlc_input(commitment_txid, htlc, opt_anchors));
689 let mut txouts: Vec<TxOut> = Vec::new();
690 txouts.push(build_htlc_output(
691 feerate_per_kw, contest_delay, htlc, opt_anchors, use_non_zero_fee_anchors,
692 broadcaster_delayed_payment_key, revocation_key
697 lock_time: PackedLockTime(if htlc.offered { htlc.cltv_expiry } else { 0 }),
703 pub(crate) fn build_htlc_input(commitment_txid: &Txid, htlc: &HTLCOutputInCommitment, opt_anchors: bool) -> TxIn {
705 previous_output: OutPoint {
706 txid: commitment_txid.clone(),
707 vout: htlc.transaction_output_index.expect("Can't build an HTLC transaction for a dust output"),
709 script_sig: Script::new(),
710 sequence: Sequence(if opt_anchors { 1 } else { 0 }),
711 witness: Witness::new(),
715 pub(crate) fn build_htlc_output(
716 feerate_per_kw: u32, contest_delay: u16, htlc: &HTLCOutputInCommitment, opt_anchors: bool,
717 use_non_zero_fee_anchors: bool, broadcaster_delayed_payment_key: &PublicKey, revocation_key: &PublicKey
719 let weight = if htlc.offered {
720 htlc_timeout_tx_weight(opt_anchors)
722 htlc_success_tx_weight(opt_anchors)
724 let output_value = if opt_anchors && !use_non_zero_fee_anchors {
725 htlc.amount_msat / 1000
727 let total_fee = feerate_per_kw as u64 * weight / 1000;
728 htlc.amount_msat / 1000 - total_fee
732 script_pubkey: get_revokeable_redeemscript(revocation_key, contest_delay, broadcaster_delayed_payment_key).to_v0_p2wsh(),
737 /// Returns the witness required to satisfy and spend a HTLC input.
738 pub fn build_htlc_input_witness(
739 local_sig: &Signature, remote_sig: &Signature, preimage: &Option<PaymentPreimage>,
740 redeem_script: &Script, opt_anchors: bool,
742 let remote_sighash_type = if opt_anchors {
743 EcdsaSighashType::SinglePlusAnyoneCanPay
745 EcdsaSighashType::All
748 let mut witness = Witness::new();
749 // First push the multisig dummy, note that due to BIP147 (NULLDUMMY) it must be a zero-length element.
750 witness.push(vec![]);
751 witness.push_bitcoin_signature(&remote_sig.serialize_der(), remote_sighash_type);
752 witness.push_bitcoin_signature(&local_sig.serialize_der(), EcdsaSighashType::All);
753 if let Some(preimage) = preimage {
754 witness.push(preimage.0.to_vec());
756 // Due to BIP146 (MINIMALIF) this must be a zero-length element to relay.
757 witness.push(vec![]);
759 witness.push(redeem_script.to_bytes());
763 /// Gets the witnessScript for the to_remote output when anchors are enabled.
765 pub fn get_to_countersignatory_with_anchors_redeemscript(payment_point: &PublicKey) -> Script {
767 .push_slice(&payment_point.serialize()[..])
768 .push_opcode(opcodes::all::OP_CHECKSIGVERIFY)
770 .push_opcode(opcodes::all::OP_CSV)
774 /// Gets the witnessScript for an anchor output from the funding public key.
775 /// The witness in the spending input must be:
776 /// <BIP 143 funding_signature>
777 /// After 16 blocks of confirmation, an alternative satisfying witness could be:
779 /// (empty vector required to satisfy compliance with MINIMALIF-standard rule)
781 pub fn get_anchor_redeemscript(funding_pubkey: &PublicKey) -> Script {
782 Builder::new().push_slice(&funding_pubkey.serialize()[..])
783 .push_opcode(opcodes::all::OP_CHECKSIG)
784 .push_opcode(opcodes::all::OP_IFDUP)
785 .push_opcode(opcodes::all::OP_NOTIF)
787 .push_opcode(opcodes::all::OP_CSV)
788 .push_opcode(opcodes::all::OP_ENDIF)
793 /// Locates the output with an anchor script paying to `funding_pubkey` within `commitment_tx`.
794 pub(crate) fn get_anchor_output<'a>(commitment_tx: &'a Transaction, funding_pubkey: &PublicKey) -> Option<(u32, &'a TxOut)> {
795 let anchor_script = chan_utils::get_anchor_redeemscript(funding_pubkey).to_v0_p2wsh();
796 commitment_tx.output.iter().enumerate()
797 .find(|(_, txout)| txout.script_pubkey == anchor_script)
798 .map(|(idx, txout)| (idx as u32, txout))
801 /// Returns the witness required to satisfy and spend an anchor input.
802 pub fn build_anchor_input_witness(funding_key: &PublicKey, funding_sig: &Signature) -> Witness {
803 let anchor_redeem_script = chan_utils::get_anchor_redeemscript(funding_key);
804 let mut ret = Witness::new();
805 ret.push_bitcoin_signature(&funding_sig.serialize_der(), EcdsaSighashType::All);
806 ret.push(anchor_redeem_script.as_bytes());
810 /// Per-channel data used to build transactions in conjunction with the per-commitment data (CommitmentTransaction).
811 /// The fields are organized by holder/counterparty.
813 /// Normally, this is converted to the broadcaster/countersignatory-organized DirectedChannelTransactionParameters
814 /// before use, via the as_holder_broadcastable and as_counterparty_broadcastable functions.
815 #[derive(Clone, Debug, PartialEq, Eq)]
816 pub struct ChannelTransactionParameters {
817 /// Holder public keys
818 pub holder_pubkeys: ChannelPublicKeys,
819 /// The contest delay selected by the holder, which applies to counterparty-broadcast transactions
820 pub holder_selected_contest_delay: u16,
821 /// Whether the holder is the initiator of this channel.
822 /// This is an input to the commitment number obscure factor computation.
823 pub is_outbound_from_holder: bool,
824 /// The late-bound counterparty channel transaction parameters.
825 /// These parameters are populated at the point in the protocol where the counterparty provides them.
826 pub counterparty_parameters: Option<CounterpartyChannelTransactionParameters>,
827 /// The late-bound funding outpoint
828 pub funding_outpoint: Option<chain::transaction::OutPoint>,
829 /// Are anchors (zero fee HTLC transaction variant) used for this channel. Boolean is
830 /// serialization backwards-compatible.
831 pub opt_anchors: Option<()>,
832 /// Are non-zero-fee anchors are enabled (used in conjuction with opt_anchors)
833 /// It is intended merely for backwards compatibility with signers that need it.
834 /// There is no support for this feature in LDK channel negotiation.
835 pub opt_non_zero_fee_anchors: Option<()>,
838 /// Late-bound per-channel counterparty data used to build transactions.
839 #[derive(Clone, Debug, PartialEq, Eq)]
840 pub struct CounterpartyChannelTransactionParameters {
841 /// Counter-party public keys
842 pub pubkeys: ChannelPublicKeys,
843 /// The contest delay selected by the counterparty, which applies to holder-broadcast transactions
844 pub selected_contest_delay: u16,
847 impl ChannelTransactionParameters {
848 /// Whether the late bound parameters are populated.
849 pub fn is_populated(&self) -> bool {
850 self.counterparty_parameters.is_some() && self.funding_outpoint.is_some()
853 /// Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
854 /// given that the holder is the broadcaster.
856 /// self.is_populated() must be true before calling this function.
857 pub fn as_holder_broadcastable(&self) -> DirectedChannelTransactionParameters {
858 assert!(self.is_populated(), "self.late_parameters must be set before using as_holder_broadcastable");
859 DirectedChannelTransactionParameters {
861 holder_is_broadcaster: true
865 /// Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
866 /// given that the counterparty is the broadcaster.
868 /// self.is_populated() must be true before calling this function.
869 pub fn as_counterparty_broadcastable(&self) -> DirectedChannelTransactionParameters {
870 assert!(self.is_populated(), "self.late_parameters must be set before using as_counterparty_broadcastable");
871 DirectedChannelTransactionParameters {
873 holder_is_broadcaster: false
878 impl_writeable_tlv_based!(CounterpartyChannelTransactionParameters, {
879 (0, pubkeys, required),
880 (2, selected_contest_delay, required),
883 impl_writeable_tlv_based!(ChannelTransactionParameters, {
884 (0, holder_pubkeys, required),
885 (2, holder_selected_contest_delay, required),
886 (4, is_outbound_from_holder, required),
887 (6, counterparty_parameters, option),
888 (8, funding_outpoint, option),
889 (10, opt_anchors, option),
890 (12, opt_non_zero_fee_anchors, option),
893 /// Static channel fields used to build transactions given per-commitment fields, organized by
894 /// broadcaster/countersignatory.
896 /// This is derived from the holder/counterparty-organized ChannelTransactionParameters via the
897 /// as_holder_broadcastable and as_counterparty_broadcastable functions.
898 pub struct DirectedChannelTransactionParameters<'a> {
899 /// The holder's channel static parameters
900 inner: &'a ChannelTransactionParameters,
901 /// Whether the holder is the broadcaster
902 holder_is_broadcaster: bool,
905 impl<'a> DirectedChannelTransactionParameters<'a> {
906 /// Get the channel pubkeys for the broadcaster
907 pub fn broadcaster_pubkeys(&self) -> &ChannelPublicKeys {
908 if self.holder_is_broadcaster {
909 &self.inner.holder_pubkeys
911 &self.inner.counterparty_parameters.as_ref().unwrap().pubkeys
915 /// Get the channel pubkeys for the countersignatory
916 pub fn countersignatory_pubkeys(&self) -> &ChannelPublicKeys {
917 if self.holder_is_broadcaster {
918 &self.inner.counterparty_parameters.as_ref().unwrap().pubkeys
920 &self.inner.holder_pubkeys
924 /// Get the contest delay applicable to the transactions.
925 /// Note that the contest delay was selected by the countersignatory.
926 pub fn contest_delay(&self) -> u16 {
927 let counterparty_parameters = self.inner.counterparty_parameters.as_ref().unwrap();
928 if self.holder_is_broadcaster { counterparty_parameters.selected_contest_delay } else { self.inner.holder_selected_contest_delay }
931 /// Whether the channel is outbound from the broadcaster.
933 /// The boolean representing the side that initiated the channel is
934 /// an input to the commitment number obscure factor computation.
935 pub fn is_outbound(&self) -> bool {
936 if self.holder_is_broadcaster { self.inner.is_outbound_from_holder } else { !self.inner.is_outbound_from_holder }
939 /// The funding outpoint
940 pub fn funding_outpoint(&self) -> OutPoint {
941 self.inner.funding_outpoint.unwrap().into_bitcoin_outpoint()
944 /// Whether to use anchors for this channel
945 pub fn opt_anchors(&self) -> bool {
946 self.inner.opt_anchors.is_some()
950 /// Information needed to build and sign a holder's commitment transaction.
952 /// The transaction is only signed once we are ready to broadcast.
954 pub struct HolderCommitmentTransaction {
955 inner: CommitmentTransaction,
956 /// Our counterparty's signature for the transaction
957 pub counterparty_sig: Signature,
958 /// All non-dust counterparty HTLC signatures, in the order they appear in the transaction
959 pub counterparty_htlc_sigs: Vec<Signature>,
960 // Which order the signatures should go in when constructing the final commitment tx witness.
961 // The user should be able to reconstruct this themselves, so we don't bother to expose it.
962 holder_sig_first: bool,
965 impl Deref for HolderCommitmentTransaction {
966 type Target = CommitmentTransaction;
968 fn deref(&self) -> &Self::Target { &self.inner }
971 impl Eq for HolderCommitmentTransaction {}
972 impl PartialEq for HolderCommitmentTransaction {
973 // We dont care whether we are signed in equality comparison
974 fn eq(&self, o: &Self) -> bool {
975 self.inner == o.inner
979 impl_writeable_tlv_based!(HolderCommitmentTransaction, {
980 (0, inner, required),
981 (2, counterparty_sig, required),
982 (4, holder_sig_first, required),
983 (6, counterparty_htlc_sigs, vec_type),
986 impl HolderCommitmentTransaction {
988 pub fn dummy(htlcs: &mut Vec<(HTLCOutputInCommitment, ())>) -> Self {
989 let secp_ctx = Secp256k1::new();
990 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
991 let dummy_sig = sign(&secp_ctx, &secp256k1::Message::from_slice(&[42; 32]).unwrap(), &SecretKey::from_slice(&[42; 32]).unwrap());
993 let keys = TxCreationKeys {
994 per_commitment_point: dummy_key.clone(),
995 revocation_key: dummy_key.clone(),
996 broadcaster_htlc_key: dummy_key.clone(),
997 countersignatory_htlc_key: dummy_key.clone(),
998 broadcaster_delayed_payment_key: dummy_key.clone(),
1000 let channel_pubkeys = ChannelPublicKeys {
1001 funding_pubkey: dummy_key.clone(),
1002 revocation_basepoint: dummy_key.clone(),
1003 payment_point: dummy_key.clone(),
1004 delayed_payment_basepoint: dummy_key.clone(),
1005 htlc_basepoint: dummy_key.clone()
1007 let channel_parameters = ChannelTransactionParameters {
1008 holder_pubkeys: channel_pubkeys.clone(),
1009 holder_selected_contest_delay: 0,
1010 is_outbound_from_holder: false,
1011 counterparty_parameters: Some(CounterpartyChannelTransactionParameters { pubkeys: channel_pubkeys.clone(), selected_contest_delay: 0 }),
1012 funding_outpoint: Some(chain::transaction::OutPoint { txid: Txid::all_zeros(), index: 0 }),
1014 opt_non_zero_fee_anchors: None,
1016 let mut counterparty_htlc_sigs = Vec::new();
1017 for _ in 0..htlcs.len() {
1018 counterparty_htlc_sigs.push(dummy_sig);
1020 let inner = CommitmentTransaction::new_with_auxiliary_htlc_data(0, 0, 0, false, dummy_key.clone(), dummy_key.clone(), keys, 0, htlcs, &channel_parameters.as_counterparty_broadcastable());
1021 htlcs.sort_by_key(|htlc| htlc.0.transaction_output_index);
1022 HolderCommitmentTransaction {
1024 counterparty_sig: dummy_sig,
1025 counterparty_htlc_sigs,
1026 holder_sig_first: false
1030 /// Create a new holder transaction with the given counterparty signatures.
1031 /// The funding keys are used to figure out which signature should go first when building the transaction for broadcast.
1032 pub fn new(commitment_tx: CommitmentTransaction, counterparty_sig: Signature, counterparty_htlc_sigs: Vec<Signature>, holder_funding_key: &PublicKey, counterparty_funding_key: &PublicKey) -> Self {
1034 inner: commitment_tx,
1036 counterparty_htlc_sigs,
1037 holder_sig_first: holder_funding_key.serialize()[..] < counterparty_funding_key.serialize()[..],
1041 pub(crate) fn add_holder_sig(&self, funding_redeemscript: &Script, holder_sig: Signature) -> Transaction {
1042 // First push the multisig dummy, note that due to BIP147 (NULLDUMMY) it must be a zero-length element.
1043 let mut tx = self.inner.built.transaction.clone();
1044 tx.input[0].witness.push(Vec::new());
1046 if self.holder_sig_first {
1047 tx.input[0].witness.push_bitcoin_signature(&holder_sig.serialize_der(), EcdsaSighashType::All);
1048 tx.input[0].witness.push_bitcoin_signature(&self.counterparty_sig.serialize_der(), EcdsaSighashType::All);
1050 tx.input[0].witness.push_bitcoin_signature(&self.counterparty_sig.serialize_der(), EcdsaSighashType::All);
1051 tx.input[0].witness.push_bitcoin_signature(&holder_sig.serialize_der(), EcdsaSighashType::All);
1054 tx.input[0].witness.push(funding_redeemscript.as_bytes().to_vec());
1059 /// A pre-built Bitcoin commitment transaction and its txid.
1061 pub struct BuiltCommitmentTransaction {
1062 /// The commitment transaction
1063 pub transaction: Transaction,
1064 /// The txid for the commitment transaction.
1066 /// This is provided as a performance optimization, instead of calling transaction.txid()
1071 impl_writeable_tlv_based!(BuiltCommitmentTransaction, {
1072 (0, transaction, required),
1073 (2, txid, required),
1076 impl BuiltCommitmentTransaction {
1077 /// Get the SIGHASH_ALL sighash value of the transaction.
1079 /// This can be used to verify a signature.
1080 pub fn get_sighash_all(&self, funding_redeemscript: &Script, channel_value_satoshis: u64) -> Message {
1081 let sighash = &sighash::SighashCache::new(&self.transaction).segwit_signature_hash(0, funding_redeemscript, channel_value_satoshis, EcdsaSighashType::All).unwrap()[..];
1082 hash_to_message!(sighash)
1085 /// Signs the counterparty's commitment transaction.
1086 pub fn sign_counterparty_commitment<T: secp256k1::Signing>(&self, funding_key: &SecretKey, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>) -> Signature {
1087 let sighash = self.get_sighash_all(funding_redeemscript, channel_value_satoshis);
1088 sign(secp_ctx, &sighash, funding_key)
1091 /// Signs the holder commitment transaction because we are about to broadcast it.
1092 pub fn sign_holder_commitment<T: secp256k1::Signing, ES: Deref>(
1093 &self, funding_key: &SecretKey, funding_redeemscript: &Script, channel_value_satoshis: u64,
1094 entropy_source: &ES, secp_ctx: &Secp256k1<T>
1095 ) -> Signature where ES::Target: EntropySource {
1096 let sighash = self.get_sighash_all(funding_redeemscript, channel_value_satoshis);
1097 sign_with_aux_rand(secp_ctx, &sighash, funding_key, entropy_source)
1101 /// This class tracks the per-transaction information needed to build a closing transaction and will
1102 /// actually build it and sign.
1104 /// This class can be used inside a signer implementation to generate a signature given the relevant
1106 #[derive(Clone, Hash, PartialEq, Eq)]
1107 pub struct ClosingTransaction {
1108 to_holder_value_sat: u64,
1109 to_counterparty_value_sat: u64,
1110 to_holder_script: Script,
1111 to_counterparty_script: Script,
1115 impl ClosingTransaction {
1116 /// Construct an object of the class
1118 to_holder_value_sat: u64,
1119 to_counterparty_value_sat: u64,
1120 to_holder_script: Script,
1121 to_counterparty_script: Script,
1122 funding_outpoint: OutPoint,
1124 let built = build_closing_transaction(
1125 to_holder_value_sat, to_counterparty_value_sat,
1126 to_holder_script.clone(), to_counterparty_script.clone(),
1129 ClosingTransaction {
1130 to_holder_value_sat,
1131 to_counterparty_value_sat,
1133 to_counterparty_script,
1138 /// Trust our pre-built transaction.
1140 /// Applies a wrapper which allows access to the transaction.
1142 /// This should only be used if you fully trust the builder of this object. It should not
1143 /// be used by an external signer - instead use the verify function.
1144 pub fn trust(&self) -> TrustedClosingTransaction {
1145 TrustedClosingTransaction { inner: self }
1148 /// Verify our pre-built transaction.
1150 /// Applies a wrapper which allows access to the transaction.
1152 /// An external validating signer must call this method before signing
1153 /// or using the built transaction.
1154 pub fn verify(&self, funding_outpoint: OutPoint) -> Result<TrustedClosingTransaction, ()> {
1155 let built = build_closing_transaction(
1156 self.to_holder_value_sat, self.to_counterparty_value_sat,
1157 self.to_holder_script.clone(), self.to_counterparty_script.clone(),
1160 if self.built != built {
1163 Ok(TrustedClosingTransaction { inner: self })
1166 /// The value to be sent to the holder, or zero if the output will be omitted
1167 pub fn to_holder_value_sat(&self) -> u64 {
1168 self.to_holder_value_sat
1171 /// The value to be sent to the counterparty, or zero if the output will be omitted
1172 pub fn to_counterparty_value_sat(&self) -> u64 {
1173 self.to_counterparty_value_sat
1176 /// The destination of the holder's output
1177 pub fn to_holder_script(&self) -> &Script {
1178 &self.to_holder_script
1181 /// The destination of the counterparty's output
1182 pub fn to_counterparty_script(&self) -> &Script {
1183 &self.to_counterparty_script
1187 /// A wrapper on ClosingTransaction indicating that the built bitcoin
1188 /// transaction is trusted.
1190 /// See trust() and verify() functions on CommitmentTransaction.
1192 /// This structure implements Deref.
1193 pub struct TrustedClosingTransaction<'a> {
1194 inner: &'a ClosingTransaction,
1197 impl<'a> Deref for TrustedClosingTransaction<'a> {
1198 type Target = ClosingTransaction;
1200 fn deref(&self) -> &Self::Target { self.inner }
1203 impl<'a> TrustedClosingTransaction<'a> {
1204 /// The pre-built Bitcoin commitment transaction
1205 pub fn built_transaction(&self) -> &Transaction {
1209 /// Get the SIGHASH_ALL sighash value of the transaction.
1211 /// This can be used to verify a signature.
1212 pub fn get_sighash_all(&self, funding_redeemscript: &Script, channel_value_satoshis: u64) -> Message {
1213 let sighash = &sighash::SighashCache::new(&self.inner.built).segwit_signature_hash(0, funding_redeemscript, channel_value_satoshis, EcdsaSighashType::All).unwrap()[..];
1214 hash_to_message!(sighash)
1217 /// Sign a transaction, either because we are counter-signing the counterparty's transaction or
1218 /// because we are about to broadcast a holder transaction.
1219 pub fn sign<T: secp256k1::Signing>(&self, funding_key: &SecretKey, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>) -> Signature {
1220 let sighash = self.get_sighash_all(funding_redeemscript, channel_value_satoshis);
1221 sign(secp_ctx, &sighash, funding_key)
1225 /// This class tracks the per-transaction information needed to build a commitment transaction and will
1226 /// actually build it and sign. It is used for holder transactions that we sign only when needed
1227 /// and for transactions we sign for the counterparty.
1229 /// This class can be used inside a signer implementation to generate a signature given the relevant
1232 pub struct CommitmentTransaction {
1233 commitment_number: u64,
1234 to_broadcaster_value_sat: u64,
1235 to_countersignatory_value_sat: u64,
1236 feerate_per_kw: u32,
1237 htlcs: Vec<HTLCOutputInCommitment>,
1238 // A boolean that is serialization backwards-compatible
1239 opt_anchors: Option<()>,
1240 // Whether non-zero-fee anchors should be used
1241 opt_non_zero_fee_anchors: Option<()>,
1242 // A cache of the parties' pubkeys required to construct the transaction, see doc for trust()
1243 keys: TxCreationKeys,
1244 // For access to the pre-built transaction, see doc for trust()
1245 built: BuiltCommitmentTransaction,
1248 impl Eq for CommitmentTransaction {}
1249 impl PartialEq for CommitmentTransaction {
1250 fn eq(&self, o: &Self) -> bool {
1251 let eq = self.commitment_number == o.commitment_number &&
1252 self.to_broadcaster_value_sat == o.to_broadcaster_value_sat &&
1253 self.to_countersignatory_value_sat == o.to_countersignatory_value_sat &&
1254 self.feerate_per_kw == o.feerate_per_kw &&
1255 self.htlcs == o.htlcs &&
1256 self.opt_anchors == o.opt_anchors &&
1257 self.keys == o.keys;
1259 debug_assert_eq!(self.built.transaction, o.built.transaction);
1260 debug_assert_eq!(self.built.txid, o.built.txid);
1266 impl_writeable_tlv_based!(CommitmentTransaction, {
1267 (0, commitment_number, required),
1268 (2, to_broadcaster_value_sat, required),
1269 (4, to_countersignatory_value_sat, required),
1270 (6, feerate_per_kw, required),
1271 (8, keys, required),
1272 (10, built, required),
1273 (12, htlcs, vec_type),
1274 (14, opt_anchors, option),
1275 (16, opt_non_zero_fee_anchors, option),
1278 impl CommitmentTransaction {
1279 /// Construct an object of the class while assigning transaction output indices to HTLCs.
1281 /// Populates HTLCOutputInCommitment.transaction_output_index in htlcs_with_aux.
1283 /// The generic T allows the caller to match the HTLC output index with auxiliary data.
1284 /// This auxiliary data is not stored in this object.
1286 /// Only include HTLCs that are above the dust limit for the channel.
1288 /// This is not exported to bindings users due to the generic though we likely should expose a version without
1289 pub fn new_with_auxiliary_htlc_data<T>(commitment_number: u64, to_broadcaster_value_sat: u64, to_countersignatory_value_sat: u64, opt_anchors: bool, broadcaster_funding_key: PublicKey, countersignatory_funding_key: PublicKey, keys: TxCreationKeys, feerate_per_kw: u32, htlcs_with_aux: &mut Vec<(HTLCOutputInCommitment, T)>, channel_parameters: &DirectedChannelTransactionParameters) -> CommitmentTransaction {
1290 // Sort outputs and populate output indices while keeping track of the auxiliary data
1291 let (outputs, htlcs) = Self::internal_build_outputs(&keys, to_broadcaster_value_sat, to_countersignatory_value_sat, htlcs_with_aux, channel_parameters, opt_anchors, &broadcaster_funding_key, &countersignatory_funding_key).unwrap();
1293 let (obscured_commitment_transaction_number, txins) = Self::internal_build_inputs(commitment_number, channel_parameters);
1294 let transaction = Self::make_transaction(obscured_commitment_transaction_number, txins, outputs);
1295 let txid = transaction.txid();
1296 CommitmentTransaction {
1298 to_broadcaster_value_sat,
1299 to_countersignatory_value_sat,
1302 opt_anchors: if opt_anchors { Some(()) } else { None },
1304 built: BuiltCommitmentTransaction {
1308 opt_non_zero_fee_anchors: None,
1312 /// Use non-zero fee anchors
1314 /// This is not exported to bindings users due to move, and also not likely to be useful for binding users
1315 pub fn with_non_zero_fee_anchors(mut self) -> Self {
1316 self.opt_non_zero_fee_anchors = Some(());
1320 fn internal_rebuild_transaction(&self, keys: &TxCreationKeys, channel_parameters: &DirectedChannelTransactionParameters, broadcaster_funding_key: &PublicKey, countersignatory_funding_key: &PublicKey) -> Result<BuiltCommitmentTransaction, ()> {
1321 let (obscured_commitment_transaction_number, txins) = Self::internal_build_inputs(self.commitment_number, channel_parameters);
1323 let mut htlcs_with_aux = self.htlcs.iter().map(|h| (h.clone(), ())).collect();
1324 let (outputs, _) = Self::internal_build_outputs(keys, self.to_broadcaster_value_sat, self.to_countersignatory_value_sat, &mut htlcs_with_aux, channel_parameters, self.opt_anchors.is_some(), broadcaster_funding_key, countersignatory_funding_key)?;
1326 let transaction = Self::make_transaction(obscured_commitment_transaction_number, txins, outputs);
1327 let txid = transaction.txid();
1328 let built_transaction = BuiltCommitmentTransaction {
1332 Ok(built_transaction)
1335 fn make_transaction(obscured_commitment_transaction_number: u64, txins: Vec<TxIn>, outputs: Vec<TxOut>) -> Transaction {
1338 lock_time: PackedLockTime(((0x20 as u32) << 8 * 3) | ((obscured_commitment_transaction_number & 0xffffffu64) as u32)),
1344 // This is used in two cases:
1345 // - initial sorting of outputs / HTLCs in the constructor, in which case T is auxiliary data the
1346 // caller needs to have sorted together with the HTLCs so it can keep track of the output index
1347 // - building of a bitcoin transaction during a verify() call, in which case T is just ()
1348 fn internal_build_outputs<T>(keys: &TxCreationKeys, to_broadcaster_value_sat: u64, to_countersignatory_value_sat: u64, htlcs_with_aux: &mut Vec<(HTLCOutputInCommitment, T)>, channel_parameters: &DirectedChannelTransactionParameters, opt_anchors: bool, broadcaster_funding_key: &PublicKey, countersignatory_funding_key: &PublicKey) -> Result<(Vec<TxOut>, Vec<HTLCOutputInCommitment>), ()> {
1349 let countersignatory_pubkeys = channel_parameters.countersignatory_pubkeys();
1350 let contest_delay = channel_parameters.contest_delay();
1352 let mut txouts: Vec<(TxOut, Option<&mut HTLCOutputInCommitment>)> = Vec::new();
1354 if to_countersignatory_value_sat > 0 {
1355 let script = if opt_anchors {
1356 get_to_countersignatory_with_anchors_redeemscript(&countersignatory_pubkeys.payment_point).to_v0_p2wsh()
1358 Payload::p2wpkh(&BitcoinPublicKey::new(countersignatory_pubkeys.payment_point)).unwrap().script_pubkey()
1362 script_pubkey: script.clone(),
1363 value: to_countersignatory_value_sat,
1369 if to_broadcaster_value_sat > 0 {
1370 let redeem_script = get_revokeable_redeemscript(
1371 &keys.revocation_key,
1373 &keys.broadcaster_delayed_payment_key,
1377 script_pubkey: redeem_script.to_v0_p2wsh(),
1378 value: to_broadcaster_value_sat,
1385 if to_broadcaster_value_sat > 0 || !htlcs_with_aux.is_empty() {
1386 let anchor_script = get_anchor_redeemscript(broadcaster_funding_key);
1389 script_pubkey: anchor_script.to_v0_p2wsh(),
1390 value: ANCHOR_OUTPUT_VALUE_SATOSHI,
1396 if to_countersignatory_value_sat > 0 || !htlcs_with_aux.is_empty() {
1397 let anchor_script = get_anchor_redeemscript(countersignatory_funding_key);
1400 script_pubkey: anchor_script.to_v0_p2wsh(),
1401 value: ANCHOR_OUTPUT_VALUE_SATOSHI,
1408 let mut htlcs = Vec::with_capacity(htlcs_with_aux.len());
1409 for (htlc, _) in htlcs_with_aux {
1410 let script = chan_utils::get_htlc_redeemscript(&htlc, opt_anchors, &keys);
1412 script_pubkey: script.to_v0_p2wsh(),
1413 value: htlc.amount_msat / 1000,
1415 txouts.push((txout, Some(htlc)));
1418 // Sort output in BIP-69 order (amount, scriptPubkey). Tie-breaks based on HTLC
1419 // CLTV expiration height.
1420 sort_outputs(&mut txouts, |a, b| {
1421 if let &Some(ref a_htlcout) = a {
1422 if let &Some(ref b_htlcout) = b {
1423 a_htlcout.cltv_expiry.cmp(&b_htlcout.cltv_expiry)
1424 // Note that due to hash collisions, we have to have a fallback comparison
1425 // here for fuzzing mode (otherwise at least chanmon_fail_consistency
1427 .then(a_htlcout.payment_hash.0.cmp(&b_htlcout.payment_hash.0))
1428 // For non-HTLC outputs, if they're copying our SPK we don't really care if we
1429 // close the channel due to mismatches - they're doing something dumb:
1430 } else { cmp::Ordering::Equal }
1431 } else { cmp::Ordering::Equal }
1434 let mut outputs = Vec::with_capacity(txouts.len());
1435 for (idx, out) in txouts.drain(..).enumerate() {
1436 if let Some(htlc) = out.1 {
1437 htlc.transaction_output_index = Some(idx as u32);
1438 htlcs.push(htlc.clone());
1440 outputs.push(out.0);
1442 Ok((outputs, htlcs))
1445 fn internal_build_inputs(commitment_number: u64, channel_parameters: &DirectedChannelTransactionParameters) -> (u64, Vec<TxIn>) {
1446 let broadcaster_pubkeys = channel_parameters.broadcaster_pubkeys();
1447 let countersignatory_pubkeys = channel_parameters.countersignatory_pubkeys();
1448 let commitment_transaction_number_obscure_factor = get_commitment_transaction_number_obscure_factor(
1449 &broadcaster_pubkeys.payment_point,
1450 &countersignatory_pubkeys.payment_point,
1451 channel_parameters.is_outbound(),
1454 let obscured_commitment_transaction_number =
1455 commitment_transaction_number_obscure_factor ^ (INITIAL_COMMITMENT_NUMBER - commitment_number);
1458 let mut ins: Vec<TxIn> = Vec::new();
1460 previous_output: channel_parameters.funding_outpoint(),
1461 script_sig: Script::new(),
1462 sequence: Sequence(((0x80 as u32) << 8 * 3)
1463 | ((obscured_commitment_transaction_number >> 3 * 8) as u32)),
1464 witness: Witness::new(),
1468 (obscured_commitment_transaction_number, txins)
1471 /// The backwards-counting commitment number
1472 pub fn commitment_number(&self) -> u64 {
1473 self.commitment_number
1476 /// The value to be sent to the broadcaster
1477 pub fn to_broadcaster_value_sat(&self) -> u64 {
1478 self.to_broadcaster_value_sat
1481 /// The value to be sent to the counterparty
1482 pub fn to_countersignatory_value_sat(&self) -> u64 {
1483 self.to_countersignatory_value_sat
1486 /// The feerate paid per 1000-weight-unit in this commitment transaction.
1487 pub fn feerate_per_kw(&self) -> u32 {
1491 /// The non-dust HTLCs (direction, amt, height expiration, hash, transaction output index)
1492 /// which were included in this commitment transaction in output order.
1493 /// The transaction index is always populated.
1495 /// This is not exported to bindings users as we cannot currently convert Vec references to/from C, though we should
1496 /// expose a less effecient version which creates a Vec of references in the future.
1497 pub fn htlcs(&self) -> &Vec<HTLCOutputInCommitment> {
1501 /// Trust our pre-built transaction and derived transaction creation public keys.
1503 /// Applies a wrapper which allows access to these fields.
1505 /// This should only be used if you fully trust the builder of this object. It should not
1506 /// be used by an external signer - instead use the verify function.
1507 pub fn trust(&self) -> TrustedCommitmentTransaction {
1508 TrustedCommitmentTransaction { inner: self }
1511 /// Verify our pre-built transaction and derived transaction creation public keys.
1513 /// Applies a wrapper which allows access to these fields.
1515 /// An external validating signer must call this method before signing
1516 /// or using the built transaction.
1517 pub fn verify<T: secp256k1::Signing + secp256k1::Verification>(&self, channel_parameters: &DirectedChannelTransactionParameters, broadcaster_keys: &ChannelPublicKeys, countersignatory_keys: &ChannelPublicKeys, secp_ctx: &Secp256k1<T>) -> Result<TrustedCommitmentTransaction, ()> {
1518 // This is the only field of the key cache that we trust
1519 let per_commitment_point = self.keys.per_commitment_point;
1520 let keys = TxCreationKeys::from_channel_static_keys(&per_commitment_point, broadcaster_keys, countersignatory_keys, secp_ctx);
1521 if keys != self.keys {
1524 let tx = self.internal_rebuild_transaction(&keys, channel_parameters, &broadcaster_keys.funding_pubkey, &countersignatory_keys.funding_pubkey)?;
1525 if self.built.transaction != tx.transaction || self.built.txid != tx.txid {
1528 Ok(TrustedCommitmentTransaction { inner: self })
1532 /// A wrapper on CommitmentTransaction indicating that the derived fields (the built bitcoin
1533 /// transaction and the transaction creation keys) are trusted.
1535 /// See trust() and verify() functions on CommitmentTransaction.
1537 /// This structure implements Deref.
1538 pub struct TrustedCommitmentTransaction<'a> {
1539 inner: &'a CommitmentTransaction,
1542 impl<'a> Deref for TrustedCommitmentTransaction<'a> {
1543 type Target = CommitmentTransaction;
1545 fn deref(&self) -> &Self::Target { self.inner }
1548 impl<'a> TrustedCommitmentTransaction<'a> {
1549 /// The transaction ID of the built Bitcoin transaction
1550 pub fn txid(&self) -> Txid {
1551 self.inner.built.txid
1554 /// The pre-built Bitcoin commitment transaction
1555 pub fn built_transaction(&self) -> &BuiltCommitmentTransaction {
1559 /// The pre-calculated transaction creation public keys.
1560 pub fn keys(&self) -> &TxCreationKeys {
1564 /// Should anchors be used.
1565 pub fn opt_anchors(&self) -> bool {
1566 self.opt_anchors.is_some()
1569 /// Get a signature for each HTLC which was included in the commitment transaction (ie for
1570 /// which HTLCOutputInCommitment::transaction_output_index.is_some()).
1572 /// The returned Vec has one entry for each HTLC, and in the same order.
1574 /// This function is only valid in the holder commitment context, it always uses EcdsaSighashType::All.
1575 pub fn get_htlc_sigs<T: secp256k1::Signing, ES: Deref>(
1576 &self, htlc_base_key: &SecretKey, channel_parameters: &DirectedChannelTransactionParameters,
1577 entropy_source: &ES, secp_ctx: &Secp256k1<T>,
1578 ) -> Result<Vec<Signature>, ()> where ES::Target: EntropySource {
1579 let inner = self.inner;
1580 let keys = &inner.keys;
1581 let txid = inner.built.txid;
1582 let mut ret = Vec::with_capacity(inner.htlcs.len());
1583 let holder_htlc_key = derive_private_key(secp_ctx, &inner.keys.per_commitment_point, htlc_base_key);
1585 for this_htlc in inner.htlcs.iter() {
1586 assert!(this_htlc.transaction_output_index.is_some());
1587 let htlc_tx = build_htlc_transaction(&txid, inner.feerate_per_kw, channel_parameters.contest_delay(), &this_htlc, self.opt_anchors(), self.opt_non_zero_fee_anchors.is_some(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
1589 let htlc_redeemscript = get_htlc_redeemscript_with_explicit_keys(&this_htlc, self.opt_anchors(), &keys.broadcaster_htlc_key, &keys.countersignatory_htlc_key, &keys.revocation_key);
1591 let sighash = hash_to_message!(&sighash::SighashCache::new(&htlc_tx).segwit_signature_hash(0, &htlc_redeemscript, this_htlc.amount_msat / 1000, EcdsaSighashType::All).unwrap()[..]);
1592 ret.push(sign_with_aux_rand(secp_ctx, &sighash, &holder_htlc_key, entropy_source));
1597 /// Gets a signed HTLC transaction given a preimage (for !htlc.offered) and the holder HTLC transaction signature.
1598 pub(crate) fn get_signed_htlc_tx(&self, channel_parameters: &DirectedChannelTransactionParameters, htlc_index: usize, counterparty_signature: &Signature, signature: &Signature, preimage: &Option<PaymentPreimage>) -> Transaction {
1599 let inner = self.inner;
1600 let keys = &inner.keys;
1601 let txid = inner.built.txid;
1602 let this_htlc = &inner.htlcs[htlc_index];
1603 assert!(this_htlc.transaction_output_index.is_some());
1604 // if we don't have preimage for an HTLC-Success, we can't generate an HTLC transaction.
1605 if !this_htlc.offered && preimage.is_none() { unreachable!(); }
1606 // Further, we should never be provided the preimage for an HTLC-Timeout transaction.
1607 if this_htlc.offered && preimage.is_some() { unreachable!(); }
1609 let mut htlc_tx = build_htlc_transaction(&txid, inner.feerate_per_kw, channel_parameters.contest_delay(), &this_htlc, self.opt_anchors(), self.opt_non_zero_fee_anchors.is_some(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
1611 let htlc_redeemscript = get_htlc_redeemscript_with_explicit_keys(&this_htlc, self.opt_anchors(), &keys.broadcaster_htlc_key, &keys.countersignatory_htlc_key, &keys.revocation_key);
1613 htlc_tx.input[0].witness = chan_utils::build_htlc_input_witness(
1614 signature, counterparty_signature, preimage, &htlc_redeemscript, self.opt_anchors(),
1620 /// Commitment transaction numbers which appear in the transactions themselves are XOR'd with a
1621 /// shared secret first. This prevents on-chain observers from discovering how many commitment
1622 /// transactions occurred in a channel before it was closed.
1624 /// This function gets the shared secret from relevant channel public keys and can be used to
1625 /// "decrypt" the commitment transaction number given a commitment transaction on-chain.
1626 pub fn get_commitment_transaction_number_obscure_factor(
1627 broadcaster_payment_basepoint: &PublicKey,
1628 countersignatory_payment_basepoint: &PublicKey,
1629 outbound_from_broadcaster: bool,
1631 let mut sha = Sha256::engine();
1633 if outbound_from_broadcaster {
1634 sha.input(&broadcaster_payment_basepoint.serialize());
1635 sha.input(&countersignatory_payment_basepoint.serialize());
1637 sha.input(&countersignatory_payment_basepoint.serialize());
1638 sha.input(&broadcaster_payment_basepoint.serialize());
1640 let res = Sha256::from_engine(sha).into_inner();
1642 ((res[26] as u64) << 5 * 8)
1643 | ((res[27] as u64) << 4 * 8)
1644 | ((res[28] as u64) << 3 * 8)
1645 | ((res[29] as u64) << 2 * 8)
1646 | ((res[30] as u64) << 1 * 8)
1647 | ((res[31] as u64) << 0 * 8)
1652 use super::CounterpartyCommitmentSecrets;
1653 use crate::{hex, chain};
1654 use crate::prelude::*;
1655 use crate::ln::chan_utils::{get_htlc_redeemscript, get_to_countersignatory_with_anchors_redeemscript, CommitmentTransaction, TxCreationKeys, ChannelTransactionParameters, CounterpartyChannelTransactionParameters, HTLCOutputInCommitment};
1656 use bitcoin::secp256k1::{PublicKey, SecretKey, Secp256k1};
1657 use crate::util::test_utils;
1658 use crate::chain::keysinterface::{ChannelSigner, SignerProvider};
1659 use bitcoin::{Network, Txid};
1660 use bitcoin::hashes::Hash;
1661 use crate::ln::PaymentHash;
1662 use bitcoin::hashes::hex::ToHex;
1663 use bitcoin::util::address::Payload;
1664 use bitcoin::PublicKey as BitcoinPublicKey;
1668 let secp_ctx = Secp256k1::new();
1670 let seed = [42; 32];
1671 let network = Network::Testnet;
1672 let keys_provider = test_utils::TestKeysInterface::new(&seed, network);
1673 let signer = keys_provider.derive_channel_signer(3000, keys_provider.generate_channel_keys_id(false, 1_000_000, 0));
1674 let counterparty_signer = keys_provider.derive_channel_signer(3000, keys_provider.generate_channel_keys_id(true, 1_000_000, 1));
1675 let delayed_payment_base = &signer.pubkeys().delayed_payment_basepoint;
1676 let per_commitment_secret = SecretKey::from_slice(&hex::decode("1f1e1d1c1b1a191817161514131211100f0e0d0c0b0a09080706050403020100").unwrap()[..]).unwrap();
1677 let per_commitment_point = PublicKey::from_secret_key(&secp_ctx, &per_commitment_secret);
1678 let htlc_basepoint = &signer.pubkeys().htlc_basepoint;
1679 let holder_pubkeys = signer.pubkeys();
1680 let counterparty_pubkeys = counterparty_signer.pubkeys();
1681 let keys = TxCreationKeys::derive_new(&secp_ctx, &per_commitment_point, delayed_payment_base, htlc_basepoint, &counterparty_pubkeys.revocation_basepoint, &counterparty_pubkeys.htlc_basepoint);
1682 let mut channel_parameters = ChannelTransactionParameters {
1683 holder_pubkeys: holder_pubkeys.clone(),
1684 holder_selected_contest_delay: 0,
1685 is_outbound_from_holder: false,
1686 counterparty_parameters: Some(CounterpartyChannelTransactionParameters { pubkeys: counterparty_pubkeys.clone(), selected_contest_delay: 0 }),
1687 funding_outpoint: Some(chain::transaction::OutPoint { txid: Txid::all_zeros(), index: 0 }),
1689 opt_non_zero_fee_anchors: None,
1692 let mut htlcs_with_aux: Vec<(_, ())> = Vec::new();
1694 // Generate broadcaster and counterparty outputs
1695 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1698 holder_pubkeys.funding_pubkey,
1699 counterparty_pubkeys.funding_pubkey,
1701 &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1703 assert_eq!(tx.built.transaction.output.len(), 2);
1704 assert_eq!(tx.built.transaction.output[1].script_pubkey, Payload::p2wpkh(&BitcoinPublicKey::new(counterparty_pubkeys.payment_point)).unwrap().script_pubkey());
1706 // Generate broadcaster and counterparty outputs as well as two anchors
1707 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1710 holder_pubkeys.funding_pubkey,
1711 counterparty_pubkeys.funding_pubkey,
1713 &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1715 assert_eq!(tx.built.transaction.output.len(), 4);
1716 assert_eq!(tx.built.transaction.output[3].script_pubkey, get_to_countersignatory_with_anchors_redeemscript(&counterparty_pubkeys.payment_point).to_v0_p2wsh());
1718 // Generate broadcaster output and anchor
1719 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1722 holder_pubkeys.funding_pubkey,
1723 counterparty_pubkeys.funding_pubkey,
1725 &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1727 assert_eq!(tx.built.transaction.output.len(), 2);
1729 // Generate counterparty output and anchor
1730 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1733 holder_pubkeys.funding_pubkey,
1734 counterparty_pubkeys.funding_pubkey,
1736 &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1738 assert_eq!(tx.built.transaction.output.len(), 2);
1740 let received_htlc = HTLCOutputInCommitment {
1742 amount_msat: 400000,
1744 payment_hash: PaymentHash([42; 32]),
1745 transaction_output_index: None,
1748 let offered_htlc = HTLCOutputInCommitment {
1750 amount_msat: 600000,
1752 payment_hash: PaymentHash([43; 32]),
1753 transaction_output_index: None,
1756 // Generate broadcaster output and received and offered HTLC outputs, w/o anchors
1757 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1760 holder_pubkeys.funding_pubkey,
1761 counterparty_pubkeys.funding_pubkey,
1763 &mut vec![(received_htlc.clone(), ()), (offered_htlc.clone(), ())],
1764 &channel_parameters.as_holder_broadcastable()
1766 assert_eq!(tx.built.transaction.output.len(), 3);
1767 assert_eq!(tx.built.transaction.output[0].script_pubkey, get_htlc_redeemscript(&received_htlc, false, &keys).to_v0_p2wsh());
1768 assert_eq!(tx.built.transaction.output[1].script_pubkey, get_htlc_redeemscript(&offered_htlc, false, &keys).to_v0_p2wsh());
1769 assert_eq!(get_htlc_redeemscript(&received_htlc, false, &keys).to_v0_p2wsh().to_hex(),
1770 "0020e43a7c068553003fe68fcae424fb7b28ec5ce48cd8b6744b3945631389bad2fb");
1771 assert_eq!(get_htlc_redeemscript(&offered_htlc, false, &keys).to_v0_p2wsh().to_hex(),
1772 "0020215d61bba56b19e9eadb6107f5a85d7f99c40f65992443f69229c290165bc00d");
1774 // Generate broadcaster output and received and offered HTLC outputs, with anchors
1775 channel_parameters.opt_anchors = Some(());
1776 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1779 holder_pubkeys.funding_pubkey,
1780 counterparty_pubkeys.funding_pubkey,
1782 &mut vec![(received_htlc.clone(), ()), (offered_htlc.clone(), ())],
1783 &channel_parameters.as_holder_broadcastable()
1785 assert_eq!(tx.built.transaction.output.len(), 5);
1786 assert_eq!(tx.built.transaction.output[2].script_pubkey, get_htlc_redeemscript(&received_htlc, true, &keys).to_v0_p2wsh());
1787 assert_eq!(tx.built.transaction.output[3].script_pubkey, get_htlc_redeemscript(&offered_htlc, true, &keys).to_v0_p2wsh());
1788 assert_eq!(get_htlc_redeemscript(&received_htlc, true, &keys).to_v0_p2wsh().to_hex(),
1789 "0020b70d0649c72b38756885c7a30908d912a7898dd5d79457a7280b8e9a20f3f2bc");
1790 assert_eq!(get_htlc_redeemscript(&offered_htlc, true, &keys).to_v0_p2wsh().to_hex(),
1791 "002087a3faeb1950a469c0e2db4a79b093a41b9526e5a6fc6ef5cb949bde3be379c7");
1795 fn test_per_commitment_storage() {
1796 // Test vectors from BOLT 3:
1797 let mut secrets: Vec<[u8; 32]> = Vec::new();
1800 macro_rules! test_secrets {
1802 let mut idx = 281474976710655;
1803 for secret in secrets.iter() {
1804 assert_eq!(monitor.get_secret(idx).unwrap(), *secret);
1807 assert_eq!(monitor.get_min_seen_secret(), idx + 1);
1808 assert!(monitor.get_secret(idx).is_none());
1813 // insert_secret correct sequence
1814 monitor = CounterpartyCommitmentSecrets::new();
1817 secrets.push([0; 32]);
1818 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1819 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1822 secrets.push([0; 32]);
1823 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1824 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1827 secrets.push([0; 32]);
1828 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1829 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1832 secrets.push([0; 32]);
1833 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1834 monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1837 secrets.push([0; 32]);
1838 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
1839 monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1842 secrets.push([0; 32]);
1843 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
1844 monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
1847 secrets.push([0; 32]);
1848 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
1849 monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
1852 secrets.push([0; 32]);
1853 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
1854 monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).unwrap();
1859 // insert_secret #1 incorrect
1860 monitor = CounterpartyCommitmentSecrets::new();
1863 secrets.push([0; 32]);
1864 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("02a40c85b6f28da08dfdbe0926c53fab2de6d28c10301f8f7c4073d5e42e3148").unwrap());
1865 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1868 secrets.push([0; 32]);
1869 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1870 assert!(monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).is_err());
1874 // insert_secret #2 incorrect (#1 derived from incorrect)
1875 monitor = CounterpartyCommitmentSecrets::new();
1878 secrets.push([0; 32]);
1879 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("02a40c85b6f28da08dfdbe0926c53fab2de6d28c10301f8f7c4073d5e42e3148").unwrap());
1880 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1883 secrets.push([0; 32]);
1884 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("dddc3a8d14fddf2b68fa8c7fbad2748274937479dd0f8930d5ebb4ab6bd866a3").unwrap());
1885 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1888 secrets.push([0; 32]);
1889 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1890 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1893 secrets.push([0; 32]);
1894 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1895 assert!(monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).is_err());
1899 // insert_secret #3 incorrect
1900 monitor = CounterpartyCommitmentSecrets::new();
1903 secrets.push([0; 32]);
1904 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1905 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1908 secrets.push([0; 32]);
1909 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1910 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1913 secrets.push([0; 32]);
1914 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c51a18b13e8527e579ec56365482c62f180b7d5760b46e9477dae59e87ed423a").unwrap());
1915 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1918 secrets.push([0; 32]);
1919 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1920 assert!(monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).is_err());
1924 // insert_secret #4 incorrect (1,2,3 derived from incorrect)
1925 monitor = CounterpartyCommitmentSecrets::new();
1928 secrets.push([0; 32]);
1929 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("02a40c85b6f28da08dfdbe0926c53fab2de6d28c10301f8f7c4073d5e42e3148").unwrap());
1930 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1933 secrets.push([0; 32]);
1934 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("dddc3a8d14fddf2b68fa8c7fbad2748274937479dd0f8930d5ebb4ab6bd866a3").unwrap());
1935 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1938 secrets.push([0; 32]);
1939 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c51a18b13e8527e579ec56365482c62f180b7d5760b46e9477dae59e87ed423a").unwrap());
1940 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1943 secrets.push([0; 32]);
1944 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("ba65d7b0ef55a3ba300d4e87af29868f394f8f138d78a7011669c79b37b936f4").unwrap());
1945 monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1948 secrets.push([0; 32]);
1949 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
1950 monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1953 secrets.push([0; 32]);
1954 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
1955 monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
1958 secrets.push([0; 32]);
1959 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
1960 monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
1963 secrets.push([0; 32]);
1964 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
1965 assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
1969 // insert_secret #5 incorrect
1970 monitor = CounterpartyCommitmentSecrets::new();
1973 secrets.push([0; 32]);
1974 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1975 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1978 secrets.push([0; 32]);
1979 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1980 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1983 secrets.push([0; 32]);
1984 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1985 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1988 secrets.push([0; 32]);
1989 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1990 monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1993 secrets.push([0; 32]);
1994 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("631373ad5f9ef654bb3dade742d09504c567edd24320d2fcd68e3cc47e2ff6a6").unwrap());
1995 monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1998 secrets.push([0; 32]);
1999 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
2000 assert!(monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).is_err());
2004 // insert_secret #6 incorrect (5 derived from incorrect)
2005 monitor = CounterpartyCommitmentSecrets::new();
2008 secrets.push([0; 32]);
2009 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2010 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
2013 secrets.push([0; 32]);
2014 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2015 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
2018 secrets.push([0; 32]);
2019 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2020 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
2023 secrets.push([0; 32]);
2024 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2025 monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
2028 secrets.push([0; 32]);
2029 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("631373ad5f9ef654bb3dade742d09504c567edd24320d2fcd68e3cc47e2ff6a6").unwrap());
2030 monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
2033 secrets.push([0; 32]);
2034 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("b7e76a83668bde38b373970155c868a653304308f9896692f904a23731224bb1").unwrap());
2035 monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
2038 secrets.push([0; 32]);
2039 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
2040 monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
2043 secrets.push([0; 32]);
2044 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
2045 assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
2049 // insert_secret #7 incorrect
2050 monitor = CounterpartyCommitmentSecrets::new();
2053 secrets.push([0; 32]);
2054 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2055 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
2058 secrets.push([0; 32]);
2059 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2060 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
2063 secrets.push([0; 32]);
2064 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2065 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
2068 secrets.push([0; 32]);
2069 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2070 monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
2073 secrets.push([0; 32]);
2074 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
2075 monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
2078 secrets.push([0; 32]);
2079 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
2080 monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
2083 secrets.push([0; 32]);
2084 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("e7971de736e01da8ed58b94c2fc216cb1dca9e326f3a96e7194fe8ea8af6c0a3").unwrap());
2085 monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
2088 secrets.push([0; 32]);
2089 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
2090 assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
2094 // insert_secret #8 incorrect
2095 monitor = CounterpartyCommitmentSecrets::new();
2098 secrets.push([0; 32]);
2099 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2100 monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
2103 secrets.push([0; 32]);
2104 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2105 monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
2108 secrets.push([0; 32]);
2109 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2110 monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
2113 secrets.push([0; 32]);
2114 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2115 monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
2118 secrets.push([0; 32]);
2119 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
2120 monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
2123 secrets.push([0; 32]);
2124 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
2125 monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
2128 secrets.push([0; 32]);
2129 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
2130 monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
2133 secrets.push([0; 32]);
2134 secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a7efbc61aac46d34f77778bac22c8a20c6a46ca460addc49009bda875ec88fa4").unwrap());
2135 assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());