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 ff1b9e1 commit 2f77780Copy full SHA for 2f77780
lightning/src/sign/type_resolver.rs
@@ -8,6 +8,7 @@ where
8
// in practice, this will only ever be an EcdsaChannelSigner (specifically, Writeable)
9
Ecdsa(<SP::Target as SignerProvider>::EcdsaSigner),
10
#[cfg(taproot)]
11
+ #[allow(unused)]
12
Taproot(<SP::Target as SignerProvider>::TaprootSigner),
13
}
14
@@ -19,6 +20,7 @@ where
19
20
match self {
21
ChannelSignerType::Ecdsa(ecs) => ecs,
22
23
24
ChannelSignerType::Taproot(tcs) => tcs,
25
26
@@ -27,6 +29,7 @@ where
27
29
28
30
31
32
33
34
35
0 commit comments