Remove ethers mono-crate

Reduces size of ethereum-serai and gives us clarity on what's used.

Next should be rmeoving the ethers-provided signing code.
This commit is contained in:
Luke Parker
2023-11-06 17:26:32 -05:00
parent 205bec36e5
commit c9003874ad
5 changed files with 40 additions and 61 deletions

View File

@@ -11,7 +11,7 @@ use k256::{
use frost::{algorithm::Hram, curve::Secp256k1};
pub fn keccak256(data: &[u8]) -> [u8; 32] {
Keccak256::digest(data).try_into().unwrap()
Keccak256::digest(data).into()
}
pub fn hash_to_scalar(data: &[u8]) -> Scalar {