Skip to content

Commit

Permalink
ecdsa: work around nightly-2020-10-06 breakage
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tarcieri committed Oct 8, 2020
1 parent a383e80 commit e626707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecdsa/src/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ where
AffinePoint<C>: Clone + Debug,
{
VerifyKey {
public_key: (C::ProjectivePoint::generator() * &self.secret_scalar).to_affine(),
public_key: (C::ProjectivePoint::generator() * *self.secret_scalar).to_affine(),
}
}

Expand Down

0 comments on commit e626707

Please sign in to comment.