From e62670728263bc7ea016256c43b36ad475ef2e67 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 8 Oct 2020 13:00:21 -0700 Subject: [PATCH] ecdsa: work around nightly-2020-10-06 breakage The `ecdsa` crate no longer builds on `nightly`, possibly due to: https://github.com/rust-lang/rust/issues/77638 Unfortunately this means rustdoc builds on https://docs.rs fail! This commit works around the issue. --- ecdsa/src/sign.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecdsa/src/sign.rs b/ecdsa/src/sign.rs index cad20dc0..b39ea59b 100644 --- a/ecdsa/src/sign.rs +++ b/ecdsa/src/sign.rs @@ -87,7 +87,7 @@ where AffinePoint: Clone + Debug, { VerifyKey { - public_key: (C::ProjectivePoint::generator() * &self.secret_scalar).to_affine(), + public_key: (C::ProjectivePoint::generator() * *self.secret_scalar).to_affine(), } }