@@ -1180,13 +1180,6 @@ impl HolderCommitmentTransaction {
1180
1180
let dummy_key = PublicKey :: from_secret_key ( & secp_ctx, & SecretKey :: from_slice ( & [ 42 ; 32 ] ) . unwrap ( ) ) ;
1181
1181
let dummy_sig = sign ( & secp_ctx, & secp256k1:: Message :: from_digest ( [ 42 ; 32 ] ) , & SecretKey :: from_slice ( & [ 42 ; 32 ] ) . unwrap ( ) ) ;
1182
1182
1183
- let keys = TxCreationKeys {
1184
- per_commitment_point : dummy_key. clone ( ) ,
1185
- revocation_key : RevocationKey :: from_basepoint ( & secp_ctx, & RevocationBasepoint :: from ( dummy_key) , & dummy_key) ,
1186
- broadcaster_htlc_key : HtlcKey :: from_basepoint ( & secp_ctx, & HtlcBasepoint :: from ( dummy_key) , & dummy_key) ,
1187
- countersignatory_htlc_key : HtlcKey :: from_basepoint ( & secp_ctx, & HtlcBasepoint :: from ( dummy_key) , & dummy_key) ,
1188
- broadcaster_delayed_payment_key : DelayedPaymentKey :: from_basepoint ( & secp_ctx, & DelayedPaymentBasepoint :: from ( dummy_key) , & dummy_key) ,
1189
- } ;
1190
1183
let channel_pubkeys = ChannelPublicKeys {
1191
1184
funding_pubkey : dummy_key. clone ( ) ,
1192
1185
revocation_basepoint : RevocationBasepoint :: from ( dummy_key) ,
@@ -1208,7 +1201,7 @@ impl HolderCommitmentTransaction {
1208
1201
for _ in 0 ..htlcs. len ( ) {
1209
1202
counterparty_htlc_sigs. push ( dummy_sig) ;
1210
1203
}
1211
- let inner = CommitmentTransaction :: new_with_auxiliary_htlc_data ( 0 , 0 , 0 , dummy_key . clone ( ) , dummy_key . clone ( ) , keys , 0 , htlcs, & channel_parameters. as_counterparty_broadcastable ( ) ) ;
1204
+ let inner = CommitmentTransaction :: new_with_auxiliary_htlc_data ( 0 , & dummy_key , 0 , 0 , 0 , htlcs, & channel_parameters. as_counterparty_broadcastable ( ) , & secp_ctx ) ;
1212
1205
htlcs. sort_by_key ( |htlc| htlc. 0 . transaction_output_index ) ;
1213
1206
HolderCommitmentTransaction {
1214
1207
inner,
@@ -1518,12 +1511,13 @@ impl CommitmentTransaction {
1518
1511
/// Only include HTLCs that are above the dust limit for the channel.
1519
1512
///
1520
1513
/// This is not exported to bindings users due to the generic though we likely should expose a version without
1521
- pub fn new_with_auxiliary_htlc_data < T > ( commitment_number : u64 , to_broadcaster_value_sat : u64 , to_countersignatory_value_sat : u64 , 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 {
1514
+ pub fn new_with_auxiliary_htlc_data < T > ( commitment_number : u64 , per_commitment_point : & PublicKey , to_broadcaster_value_sat : u64 , to_countersignatory_value_sat : u64 , feerate_per_kw : u32 , htlcs_with_aux : & mut Vec < ( HTLCOutputInCommitment , T ) > , channel_parameters : & DirectedChannelTransactionParameters , secp_ctx : & Secp256k1 < secp256k1 :: All > ) -> CommitmentTransaction {
1522
1515
let to_broadcaster_value_sat = Amount :: from_sat ( to_broadcaster_value_sat) ;
1523
1516
let to_countersignatory_value_sat = Amount :: from_sat ( to_countersignatory_value_sat) ;
1517
+ let keys = TxCreationKeys :: from_channel_static_keys ( per_commitment_point, channel_parameters. broadcaster_pubkeys ( ) , channel_parameters. countersignatory_pubkeys ( ) , secp_ctx) ;
1524
1518
1525
1519
// Sort outputs and populate output indices while keeping track of the auxiliary data
1526
- let ( outputs, htlcs) = Self :: internal_build_outputs ( & keys, to_broadcaster_value_sat, to_countersignatory_value_sat, htlcs_with_aux, channel_parameters, & broadcaster_funding_key , & countersignatory_funding_key ) . unwrap ( ) ;
1520
+ let ( outputs, htlcs) = Self :: internal_build_outputs ( & keys, to_broadcaster_value_sat, to_countersignatory_value_sat, htlcs_with_aux, channel_parameters) ;
1527
1521
1528
1522
let ( obscured_commitment_transaction_number, txins) = Self :: internal_build_inputs ( commitment_number, channel_parameters) ;
1529
1523
let transaction = Self :: make_transaction ( obscured_commitment_transaction_number, txins, outputs) ;
@@ -1552,19 +1546,19 @@ impl CommitmentTransaction {
1552
1546
self
1553
1547
}
1554
1548
1555
- fn internal_rebuild_transaction ( & self , keys : & TxCreationKeys , channel_parameters : & DirectedChannelTransactionParameters , broadcaster_funding_key : & PublicKey , countersignatory_funding_key : & PublicKey ) -> Result < BuiltCommitmentTransaction , ( ) > {
1549
+ fn internal_rebuild_transaction ( & self , keys : & TxCreationKeys , channel_parameters : & DirectedChannelTransactionParameters ) -> BuiltCommitmentTransaction {
1556
1550
let ( obscured_commitment_transaction_number, txins) = Self :: internal_build_inputs ( self . commitment_number , channel_parameters) ;
1557
1551
1558
1552
let mut htlcs_with_aux = self . htlcs . iter ( ) . map ( |h| ( h. clone ( ) , ( ) ) ) . collect ( ) ;
1559
- let ( outputs, _) = Self :: internal_build_outputs ( keys, self . to_broadcaster_value_sat , self . to_countersignatory_value_sat , & mut htlcs_with_aux, channel_parameters, broadcaster_funding_key , countersignatory_funding_key ) ? ;
1553
+ let ( outputs, _) = Self :: internal_build_outputs ( keys, self . to_broadcaster_value_sat , self . to_countersignatory_value_sat , & mut htlcs_with_aux, channel_parameters) ;
1560
1554
1561
1555
let transaction = Self :: make_transaction ( obscured_commitment_transaction_number, txins, outputs) ;
1562
1556
let txid = transaction. compute_txid ( ) ;
1563
1557
let built_transaction = BuiltCommitmentTransaction {
1564
1558
transaction,
1565
1559
txid
1566
1560
} ;
1567
- Ok ( built_transaction)
1561
+ built_transaction
1568
1562
}
1569
1563
1570
1564
fn make_transaction ( obscured_commitment_transaction_number : u64 , txins : Vec < TxIn > , outputs : Vec < TxOut > ) -> Transaction {
@@ -1580,17 +1574,20 @@ impl CommitmentTransaction {
1580
1574
// - initial sorting of outputs / HTLCs in the constructor, in which case T is auxiliary data the
1581
1575
// caller needs to have sorted together with the HTLCs so it can keep track of the output index
1582
1576
// - building of a bitcoin transaction during a verify() call, in which case T is just ()
1583
- fn internal_build_outputs < T > ( keys : & TxCreationKeys , to_broadcaster_value_sat : Amount , to_countersignatory_value_sat : Amount , htlcs_with_aux : & mut Vec < ( HTLCOutputInCommitment , T ) > , channel_parameters : & DirectedChannelTransactionParameters , broadcaster_funding_key : & PublicKey , countersignatory_funding_key : & PublicKey ) -> Result < ( Vec < TxOut > , Vec < HTLCOutputInCommitment > ) , ( ) > {
1584
- let countersignatory_pubkeys = channel_parameters. countersignatory_pubkeys ( ) ;
1577
+ fn internal_build_outputs < T > ( keys : & TxCreationKeys , to_broadcaster_value_sat : Amount , to_countersignatory_value_sat : Amount , htlcs_with_aux : & mut Vec < ( HTLCOutputInCommitment , T ) > , channel_parameters : & DirectedChannelTransactionParameters ) -> ( Vec < TxOut > , Vec < HTLCOutputInCommitment > ) {
1578
+ let countersignatory_payment_point = & channel_parameters. countersignatory_pubkeys ( ) . payment_point ;
1579
+ let countersignatory_funding_key = & channel_parameters. countersignatory_pubkeys ( ) . funding_pubkey ;
1580
+ let broadcaster_funding_key = & channel_parameters. broadcaster_pubkeys ( ) . funding_pubkey ;
1581
+ let channel_type = channel_parameters. channel_type_features ( ) ;
1585
1582
let contest_delay = channel_parameters. contest_delay ( ) ;
1586
1583
1587
1584
let mut txouts: Vec < ( TxOut , Option < & mut HTLCOutputInCommitment > ) > = Vec :: new ( ) ;
1588
1585
1589
1586
if to_countersignatory_value_sat > Amount :: ZERO {
1590
- let script = if channel_parameters . channel_type_features ( ) . supports_anchors_zero_fee_htlc_tx ( ) {
1591
- get_to_countersigner_keyed_anchor_redeemscript ( & countersignatory_pubkeys . payment_point ) . to_p2wsh ( )
1587
+ let script = if channel_type . supports_anchors_zero_fee_htlc_tx ( ) {
1588
+ get_to_countersigner_keyed_anchor_redeemscript ( countersignatory_payment_point ) . to_p2wsh ( )
1592
1589
} else {
1593
- ScriptBuf :: new_p2wpkh ( & Hash160 :: hash ( & countersignatory_pubkeys . payment_point . serialize ( ) ) . into ( ) )
1590
+ ScriptBuf :: new_p2wpkh ( & Hash160 :: hash ( & countersignatory_payment_point . serialize ( ) ) . into ( ) )
1594
1591
} ;
1595
1592
txouts. push ( (
1596
1593
TxOut {
@@ -1616,7 +1613,7 @@ impl CommitmentTransaction {
1616
1613
) ) ;
1617
1614
}
1618
1615
1619
- if channel_parameters . channel_type_features ( ) . supports_anchors_zero_fee_htlc_tx ( ) {
1616
+ if channel_type . supports_anchors_zero_fee_htlc_tx ( ) {
1620
1617
if to_broadcaster_value_sat > Amount :: ZERO || !htlcs_with_aux. is_empty ( ) {
1621
1618
let anchor_script = get_keyed_anchor_redeemscript ( broadcaster_funding_key) ;
1622
1619
txouts. push ( (
@@ -1642,7 +1639,7 @@ impl CommitmentTransaction {
1642
1639
1643
1640
let mut htlcs = Vec :: with_capacity ( htlcs_with_aux. len ( ) ) ;
1644
1641
for ( htlc, _) in htlcs_with_aux {
1645
- let script = get_htlc_redeemscript ( & htlc, & channel_parameters . channel_type_features ( ) , & keys) ;
1642
+ let script = get_htlc_redeemscript ( htlc, channel_type , keys) ;
1646
1643
let txout = TxOut {
1647
1644
script_pubkey : script. to_p2wsh ( ) ,
1648
1645
value : htlc. to_bitcoin_amount ( ) ,
@@ -1674,7 +1671,7 @@ impl CommitmentTransaction {
1674
1671
}
1675
1672
outputs. push ( out. 0 ) ;
1676
1673
}
1677
- Ok ( ( outputs, htlcs) )
1674
+ ( outputs, htlcs)
1678
1675
}
1679
1676
1680
1677
fn internal_build_inputs ( commitment_number : u64 , channel_parameters : & DirectedChannelTransactionParameters ) -> ( u64 , Vec < TxIn > ) {
@@ -1753,14 +1750,14 @@ impl CommitmentTransaction {
1753
1750
///
1754
1751
/// An external validating signer must call this method before signing
1755
1752
/// or using the built transaction.
1756
- pub fn verify < T : secp256k1:: Signing + secp256k1:: Verification > ( & self , channel_parameters : & DirectedChannelTransactionParameters , broadcaster_keys : & ChannelPublicKeys , countersignatory_keys : & ChannelPublicKeys , secp_ctx : & Secp256k1 < T > ) -> Result < TrustedCommitmentTransaction , ( ) > {
1753
+ pub fn verify < T : secp256k1:: Signing + secp256k1:: Verification > ( & self , channel_parameters : & DirectedChannelTransactionParameters , secp_ctx : & Secp256k1 < T > ) -> Result < TrustedCommitmentTransaction , ( ) > {
1757
1754
// This is the only field of the key cache that we trust
1758
- let per_commitment_point = self . keys . per_commitment_point ;
1759
- let keys = TxCreationKeys :: from_channel_static_keys ( & per_commitment_point, broadcaster_keys , countersignatory_keys , secp_ctx) ;
1755
+ let per_commitment_point = & self . keys . per_commitment_point ;
1756
+ let keys = TxCreationKeys :: from_channel_static_keys ( per_commitment_point, channel_parameters . broadcaster_pubkeys ( ) , channel_parameters . countersignatory_pubkeys ( ) , secp_ctx) ;
1760
1757
if keys != self . keys {
1761
1758
return Err ( ( ) ) ;
1762
1759
}
1763
- let tx = self . internal_rebuild_transaction ( & keys, channel_parameters, & broadcaster_keys . funding_pubkey , & countersignatory_keys . funding_pubkey ) ? ;
1760
+ let tx = self . internal_rebuild_transaction ( & keys, channel_parameters) ;
1764
1761
if self . built . transaction != tx. transaction || self . built . txid != tx. txid {
1765
1762
return Err ( ( ) ) ;
1766
1763
}
@@ -1967,8 +1964,8 @@ pub fn get_commitment_transaction_number_obscure_factor(
1967
1964
mod tests {
1968
1965
use super :: { CounterpartyCommitmentSecrets , ChannelPublicKeys } ;
1969
1966
use crate :: chain;
1970
- use crate :: ln:: chan_utils:: { get_htlc_redeemscript, get_to_countersigner_keyed_anchor_redeemscript, CommitmentTransaction , TxCreationKeys , ChannelTransactionParameters , CounterpartyChannelTransactionParameters , HTLCOutputInCommitment } ;
1971
- use bitcoin:: secp256k1:: { PublicKey , SecretKey , Secp256k1 } ;
1967
+ use crate :: ln:: chan_utils:: { get_htlc_redeemscript, get_to_countersigner_keyed_anchor_redeemscript, CommitmentTransaction , ChannelTransactionParameters , CounterpartyChannelTransactionParameters , HTLCOutputInCommitment } ;
1968
+ use bitcoin:: secp256k1:: { self , PublicKey , SecretKey , Secp256k1 } ;
1972
1969
use crate :: util:: test_utils;
1973
1970
use crate :: sign:: { ChannelSigner , SignerProvider } ;
1974
1971
use bitcoin:: { Network , Txid , ScriptBuf , CompressedPublicKey } ;
@@ -1983,13 +1980,12 @@ mod tests {
1983
1980
1984
1981
struct TestCommitmentTxBuilder {
1985
1982
commitment_number : u64 ,
1986
- holder_funding_pubkey : PublicKey ,
1987
- counterparty_funding_pubkey : PublicKey ,
1988
- keys : TxCreationKeys ,
1983
+ per_commitment_point : PublicKey ,
1989
1984
feerate_per_kw : u32 ,
1990
1985
htlcs_with_aux : Vec < ( HTLCOutputInCommitment , ( ) ) > ,
1991
1986
channel_parameters : ChannelTransactionParameters ,
1992
1987
counterparty_pubkeys : ChannelPublicKeys ,
1988
+ secp_ctx : Secp256k1 :: < secp256k1:: All > ,
1993
1989
}
1994
1990
1995
1991
impl TestCommitmentTxBuilder {
@@ -2014,32 +2010,23 @@ mod tests {
2014
2010
channel_type_features : ChannelTypeFeatures :: only_static_remote_key ( ) ,
2015
2011
channel_value_satoshis : 3000 ,
2016
2012
} ;
2017
- let directed_parameters = channel_parameters. as_holder_broadcastable ( ) ;
2018
- let keys = TxCreationKeys :: from_channel_static_keys (
2019
- & per_commitment_point, directed_parameters. broadcaster_pubkeys ( ) ,
2020
- directed_parameters. countersignatory_pubkeys ( ) , & secp_ctx,
2021
- ) ;
2022
2013
let htlcs_with_aux = Vec :: new ( ) ;
2023
2014
2024
2015
Self {
2025
2016
commitment_number : 0 ,
2026
- holder_funding_pubkey : holder_pubkeys. funding_pubkey ,
2027
- counterparty_funding_pubkey : counterparty_pubkeys. funding_pubkey ,
2028
- keys,
2017
+ per_commitment_point,
2029
2018
feerate_per_kw : 1 ,
2030
2019
htlcs_with_aux,
2031
2020
channel_parameters,
2032
2021
counterparty_pubkeys,
2022
+ secp_ctx,
2033
2023
}
2034
2024
}
2035
2025
2036
2026
fn build ( & mut self , to_broadcaster_sats : u64 , to_countersignatory_sats : u64 ) -> CommitmentTransaction {
2037
2027
CommitmentTransaction :: new_with_auxiliary_htlc_data (
2038
- self . commitment_number , to_broadcaster_sats, to_countersignatory_sats,
2039
- self . holder_funding_pubkey . clone ( ) ,
2040
- self . counterparty_funding_pubkey . clone ( ) ,
2041
- self . keys . clone ( ) , self . feerate_per_kw ,
2042
- & mut self . htlcs_with_aux , & self . channel_parameters . as_holder_broadcastable ( )
2028
+ self . commitment_number , & self . per_commitment_point , to_broadcaster_sats, to_countersignatory_sats, self . feerate_per_kw ,
2029
+ & mut self . htlcs_with_aux , & self . channel_parameters . as_holder_broadcastable ( ) , & self . secp_ctx
2043
2030
)
2044
2031
}
2045
2032
}
@@ -2087,7 +2074,7 @@ mod tests {
2087
2074
builder. channel_parameters . channel_type_features = ChannelTypeFeatures :: only_static_remote_key ( ) ;
2088
2075
builder. htlcs_with_aux = vec ! [ ( received_htlc. clone( ) , ( ) ) , ( offered_htlc. clone( ) , ( ) ) ] ;
2089
2076
let tx = builder. build ( 3000 , 0 ) ;
2090
- let keys = & builder . keys . clone ( ) ;
2077
+ let keys = tx . trust ( ) . keys ( ) ;
2091
2078
assert_eq ! ( tx. built. transaction. output. len( ) , 3 ) ;
2092
2079
assert_eq ! ( tx. built. transaction. output[ 0 ] . script_pubkey, get_htlc_redeemscript( & received_htlc, & ChannelTypeFeatures :: only_static_remote_key( ) , & keys) . to_p2wsh( ) ) ;
2093
2080
assert_eq ! ( tx. built. transaction. output[ 1 ] . script_pubkey, get_htlc_redeemscript( & offered_htlc, & ChannelTypeFeatures :: only_static_remote_key( ) , & keys) . to_p2wsh( ) ) ;
0 commit comments