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 a49b142 commit 37ee098Copy full SHA for 37ee098
2 files changed
primitives/dilithium-crypto/Cargo.toml
@@ -44,6 +44,7 @@ serde = [
44
]
45
std = [
46
"codec/std",
47
+ "full_crypto",
48
"qp-poseidon/std",
49
"qp-rusty-crystals-hdwallet",
50
"scale-info/std",
primitives/dilithium-crypto/src/pair.rs
@@ -53,7 +53,7 @@ impl Pair for DilithiumPair {
53
DilithiumPair::from_seed(seed).map_err(|_| SecretStringError::InvalidSeed)
54
}
55
56
- #[cfg(any(feature = "full_crypto", feature = "serde"))]
+ #[cfg(feature = "full_crypto")]
57
fn sign(&self, message: &[u8]) -> DilithiumSignatureWithPublic {
58
// Create keypair struct
59
0 commit comments