We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e837e5e commit 245dd11Copy full SHA for 245dd11
lightning/src/ln/channel.rs
@@ -7694,6 +7694,14 @@ where
7694
),
7695
});
7696
}
7697
+ // Bitcoin Core will not relay transactions with a taproot annex yet.
7698
+ if witness.len() == 2 {
7699
+ return Err(APIError::APIMisuseError {
7700
+ err: format!(
7701
+ "The witness for input at index {input_idx} for a P2TR spend has 2 elements (probably includes an annex). The transaction won't be relayed",
7702
+ ),
7703
+ });
7704
+ }
7705
let sighash = cache
7706
.taproot_key_spend_signature_hash(
7707
input_idx,
0 commit comments