File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
### Removed
15
15
- ` std ` feature - replaced with ` core::error::Error `
16
16
- ` derive ` feature
17
+ - ` SignerMut ` blanket implementation for ` Signer `
17
18
18
19
[ #1448 ] : https://github.com/RustCrypto/traits/pull/1448
19
20
[ #1759 ] : https://github.com/RustCrypto/traits/pull/1759
Original file line number Diff line number Diff line change @@ -55,13 +55,6 @@ pub trait SignerMut<S> {
55
55
fn try_sign ( & mut self , msg : & [ u8 ] ) -> Result < S , Error > ;
56
56
}
57
57
58
- /// Blanket impl of [`SignerMut`] for all [`Signer`] types.
59
- impl < S , T : Signer < S > > SignerMut < S > for T {
60
- fn try_sign ( & mut self , msg : & [ u8 ] ) -> Result < S , Error > {
61
- T :: try_sign ( self , msg)
62
- }
63
- }
64
-
65
58
/// Sign the given prehashed message [`Digest`] using `Self`.
66
59
///
67
60
/// ## Notes
You can’t perform that action at this time.
0 commit comments