@@ -72,7 +72,7 @@ const P2WPKH_INPUT_WEIGHT: u64 = (36 + 4 + 1) * WITNESS_SCALE_FACTOR as u64 + (1
72
72
// - 22 bytes for the script (OP_0 OP_PUSH20 20 byte public key hash)
73
73
const P2WPKH_OUTPUT_WEIGHT : u64 = ( 8 + 1 + 22 ) * WITNESS_SCALE_FACTOR as u64 ;
74
74
75
- // A P2TR input consists of:
75
+ // A P2TR key path input consists of:
76
76
// - 36 bytes for the previous outpoint:
77
77
// - 32 bytes transaction hash
78
78
// - 4 bytes index
@@ -82,7 +82,7 @@ const P2WPKH_OUTPUT_WEIGHT: u64 = (8 + 1 + 22) * WITNESS_SCALE_FACTOR as u64;
82
82
// - 1 byte for witness items count
83
83
// - 1 byte for the signature length
84
84
// - 64 bytes for the Schnorr signature
85
- const P2TR_INPUT_WEIGHT : u64 = ( 36 + 4 + 1 ) * WITNESS_SCALE_FACTOR as u64 + ( 1 + 1 + 64 ) ;
85
+ const P2TR_KEYPATH_INPUT_WEIGHT : u64 = ( 36 + 4 + 1 ) * WITNESS_SCALE_FACTOR as u64 + ( 1 + 1 + 64 ) ;
86
86
// A P2TR output consists of:
87
87
// - 8 bytes for the output amount
88
88
// - 1 byte for the script length
@@ -109,7 +109,7 @@ const ANCHOR_INPUT_WEIGHT: u64 = (36 + 4 + 1) * WITNESS_SCALE_FACTOR as u64 + (1
109
109
fn htlc_success_transaction_weight ( context : & AnchorChannelReserveContext ) -> u64 {
110
110
PER_HTLC_SUCCESS_WEIGHT
111
111
+ if context. taproot_wallet {
112
- P2TR_INPUT_WEIGHT + P2TR_OUTPUT_WEIGHT
112
+ P2TR_KEYPATH_INPUT_WEIGHT + P2TR_OUTPUT_WEIGHT
113
113
} else {
114
114
P2WPKH_INPUT_WEIGHT + P2WPKH_OUTPUT_WEIGHT
115
115
}
@@ -118,7 +118,7 @@ fn htlc_success_transaction_weight(context: &AnchorChannelReserveContext) -> u64
118
118
fn htlc_timeout_transaction_weight ( context : & AnchorChannelReserveContext ) -> u64 {
119
119
PER_HTLC_TIMEOUT_WEIGHT
120
120
+ if context. taproot_wallet {
121
- P2TR_INPUT_WEIGHT + P2TR_OUTPUT_WEIGHT
121
+ P2TR_KEYPATH_INPUT_WEIGHT + P2TR_OUTPUT_WEIGHT
122
122
} else {
123
123
P2WPKH_INPUT_WEIGHT + P2WPKH_OUTPUT_WEIGHT
124
124
}
@@ -209,7 +209,7 @@ pub fn get_reserve_per_channel(context: &AnchorChannelReserveContext) -> Amount
209
209
get_reserve_per_channel_with_input (
210
210
context,
211
211
if context. taproot_wallet {
212
- Weight :: from_wu ( P2TR_INPUT_WEIGHT )
212
+ Weight :: from_wu ( P2TR_KEYPATH_INPUT_WEIGHT )
213
213
} else {
214
214
Weight :: from_wu ( P2WPKH_INPUT_WEIGHT )
215
215
} ,
@@ -378,7 +378,7 @@ mod test {
378
378
assert_eq ! (
379
379
anchor_output_spend_transaction_weight(
380
380
& AnchorChannelReserveContext { taproot_wallet: true , ..Default :: default ( ) } ,
381
- Weight :: from_wu( P2TR_INPUT_WEIGHT ) ,
381
+ Weight :: from_wu( P2TR_KEYPATH_INPUT_WEIGHT ) ,
382
382
) ,
383
383
723
384
384
) ;
0 commit comments