File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -94,9 +94,6 @@ impl_raw_debug!(PublicKey);
9494impl PublicKey {
9595 /// Create a new (zeroed) public key usable for the FFI interface
9696 pub fn new ( ) -> PublicKey { PublicKey ( [ 0 ; 64 ] ) }
97- /// Create a new (uninitialized) public key usable for the FFI interface
98- #[ deprecated( since = "0.15.3" , note = "Please use the new function instead" ) ]
99- pub unsafe fn blank ( ) -> PublicKey { PublicKey :: new ( ) }
10097}
10198
10299impl Default for PublicKey {
@@ -120,9 +117,6 @@ impl_raw_debug!(Signature);
120117impl Signature {
121118 /// Create a new (zeroed) signature usable for the FFI interface
122119 pub fn new ( ) -> Signature { Signature ( [ 0 ; 64 ] ) }
123- /// Create a new (uninitialized) signature usable for the FFI interface
124- #[ deprecated( since = "0.15.3" , note = "Please use the new function instead" ) ]
125- pub unsafe fn blank ( ) -> Signature { Signature :: new ( ) }
126120}
127121
128122impl Default for Signature {
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ impl_raw_debug!(RecoverableSignature);
2828impl RecoverableSignature {
2929 /// Create a new (zeroed) signature usable for the FFI interface
3030 pub fn new ( ) -> RecoverableSignature { RecoverableSignature ( [ 0 ; 65 ] ) }
31- /// Create a new (uninitialized) signature usable for the FFI interface
32- #[ deprecated( since = "0.15.3" , note = "Please use the new function instead" ) ]
33- pub unsafe fn blank ( ) -> RecoverableSignature { RecoverableSignature :: new ( ) }
3431}
3532
3633impl Default for RecoverableSignature {
You can’t perform that action at this time.
0 commit comments