Skip to content

Commit bd3c5f5

Browse files
committed
Do not enable secp rand feature
Patch f80cf2c (PR rust-bitcoin#4154) somehow got past review with a change that unconditionally enabled `rand` feature for `secp256k1` - this is incorrect. There is no mention of the change in the PR description or review comments - review fail.
1 parent 3a364ad commit bd3c5f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ hex = { package = "hex-conservative", version = "0.3.0", default-features = fals
3333
internals = { package = "bitcoin-internals", path = "../internals", features = ["alloc", "hex"] }
3434
io = { package = "bitcoin-io", path = "../io", default-features = false, features = ["alloc", "hashes"] }
3535
primitives = { package = "bitcoin-primitives", path = "../primitives", default-features = false, features = ["alloc", "hex"] }
36-
secp256k1 = { version = "0.30.0", default-features = false, features = ["hashes", "alloc", "rand"] }
36+
secp256k1 = { version = "0.30.0", default-features = false, features = ["hashes", "alloc"] }
3737
units = { package = "bitcoin-units", path = "../units", default-features = false, features = ["alloc"] }
3838

3939
arbitrary = { version = "1.4.1", optional = true }

0 commit comments

Comments
 (0)