Skip to content

Commit 6c7ec45

Browse files
Fix k256 library error: use sha2 feature instead of sha256
1 parent 8284582 commit 6c7ec45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guest-libs/k256/src/ecdsa.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Use these types instead of unpatched k256::ecdsa::{Signature, VerifyingKey}
44
// because those are type aliases that use non-zkvm implementations
55

6-
#[cfg(any(feature = "ecdsa", feature = "sha256"))]
6+
#[cfg(any(feature = "ecdsa", feature = "sha2"))]
77
pub use ecdsa_core::hazmat;
88
pub use ecdsa_core::{
99
signature::{self, Error},

0 commit comments

Comments
 (0)