Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit ecf7122

Browse files
authored
Added missing BLS feature (#14461)
1 parent 0bf1433 commit ecf7122

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

client/keystore/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ tempfile = "3.1.0"
2929
# This feature adds BLS crypto primitives. It should not be used in production since
3030
# the BLS implementation and interface may still be subject to significant change.
3131
bls-experimental = [
32-
"sp-core/bls-experimental",
33-
"sp-keystore/bls-experimental",
32+
"sp-core/bls-experimental",
33+
"sp-keystore/bls-experimental",
3434
]

primitives/application-crypto/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ full_crypto = [
5151
"sp-io/disable_panic_handler",
5252
"sp-io/disable_oom",
5353
]
54+
55+
# This feature adds BLS crypto primitives. It should not be used in production since
56+
# the BLS implementation and interface may still be subject to significant change.
57+
bls-experimental = [ "sp-core/bls-experimental" ]

0 commit comments

Comments
 (0)