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);
94
94
impl PublicKey {
95
95
/// Create a new (zeroed) public key usable for the FFI interface
96
96
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 ( ) }
100
97
}
101
98
102
99
impl Default for PublicKey {
@@ -120,9 +117,6 @@ impl_raw_debug!(Signature);
120
117
impl Signature {
121
118
/// Create a new (zeroed) signature usable for the FFI interface
122
119
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 ( ) }
126
120
}
127
121
128
122
impl Default for Signature {
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ impl_raw_debug!(RecoverableSignature);
28
28
impl RecoverableSignature {
29
29
/// Create a new (zeroed) signature usable for the FFI interface
30
30
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 ( ) }
34
31
}
35
32
36
33
impl Default for RecoverableSignature {
You can’t perform that action at this time.
0 commit comments