From 34397b31b1a77e9924ba407649768eb79a7b4590 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 19 Aug 2023 16:34:27 -0400 Subject: [PATCH] Correct serai-processor-tests to dalek 4 --- Cargo.lock | 2 +- tests/processor/Cargo.toml | 2 +- tests/processor/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be3b5b59e..0badc0fb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8223,7 +8223,7 @@ version = "0.1.0" dependencies = [ "bitcoin-serai", "ciphersuite", - "curve25519-dalek 3.2.0", + "curve25519-dalek 4.0.0", "dkg", "dockertest", "hex", diff --git a/tests/processor/Cargo.toml b/tests/processor/Cargo.toml index 39cd0dcaa..0df9eea26 100644 --- a/tests/processor/Cargo.toml +++ b/tests/processor/Cargo.toml @@ -19,7 +19,7 @@ hex = "0.4" zeroize = { version = "1", default-features = false } rand_core = { version = "0.6", default-features = false, features = ["getrandom"] } -curve25519-dalek = "3.2" +curve25519-dalek = "4" ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["ristretto"] } dkg = { path = "../../crypto/dkg", default-features = false, features = ["tests"] } diff --git a/tests/processor/src/lib.rs b/tests/processor/src/lib.rs index 9ce2f6b42..8004e81df 100644 --- a/tests/processor/src/lib.rs +++ b/tests/processor/src/lib.rs @@ -276,7 +276,7 @@ impl Coordinator { Some(serde_json::json!({ "wallet_address": ViewPair::new( ED25519_BASEPOINT_POINT, - Zeroizing::new(Scalar::one()), + Zeroizing::new(Scalar::ONE), ).address(Network::Mainnet, AddressSpec::Standard).to_string(), "amount_of_blocks": 1, })),