Skip to content

Commit 11001f4

Browse files
committed
Merge #579: Followup: Disallow missing Debug implementations for Scalar type.
e597860 Followup: Disallow missing `Debug` implementations for `Scalar` type. (Arik Sosman) Pull request description: Because `Scalar` now implements it, that carveout is no longer necessary. ACKs for top commit: tcharding: ACK e597860 apoelstra: ACK e597860 Tree-SHA512: fd9682550cc6bd2d3d59d067d3a0c7faf5767b4c127d86f95c7355ff795189272f399ce2df7d870f85fa3a3d6727fa6debc058171aab965a8f0aa5b5aecff581
2 parents 8603719 + e597860 commit 11001f4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/scalar.rs

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ use crate::constants;
2020
// Internal represenation is big endian to match what `libsecp256k1` uses.
2121
// Also easier to implement comparison.
2222
// Debug impl omitted for now, the bytes may be secret
23-
#[allow(missing_debug_implementations)]
2423
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
2524
pub struct Scalar([u8; 32]);
2625
impl_pretty_debug!(Scalar);

0 commit comments

Comments
 (0)