Skip to content

Commit e626707

Browse files
committed
ecdsa: work around nightly-2020-10-06 breakage
The `ecdsa` crate no longer builds on `nightly`, possibly due to: rust-lang/rust#77638 Unfortunately this means rustdoc builds on https://docs.rs fail! This commit works around the issue.
1 parent a383e80 commit e626707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ecdsa/src/sign.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ where
8787
AffinePoint<C>: Clone + Debug,
8888
{
8989
VerifyKey {
90-
public_key: (C::ProjectivePoint::generator() * &self.secret_scalar).to_affine(),
90+
public_key: (C::ProjectivePoint::generator() * *self.secret_scalar).to_affine(),
9191
}
9292
}
9393

0 commit comments

Comments
 (0)