@@ -150,17 +150,6 @@ use crate::prelude::*;
150
150
151
151
/// Trait representing a key which can be converted to a hash type.
152
152
pub trait MiniscriptKey : Clone + Eq + Ord + fmt:: Debug + fmt:: Display + hash:: Hash {
153
- /// Returns true if the key is serialized uncompressed, defaults to `false`.
154
- fn is_uncompressed ( & self ) -> bool ;
155
-
156
- /// Returns true if the key is an x-only pubkey, defaults to `false`.
157
- fn is_x_only_key ( & self ) -> bool ;
158
-
159
- /// Returns the number of different derivation paths in this key, defaults to `0`.
160
- ///
161
- /// Only >1 for keys in BIP389 multipath descriptors.
162
- fn num_der_paths ( & self ) -> usize ;
163
-
164
153
/// The type used in the sha256 fragment.
165
154
type Sha256 : Clone + Eq + Ord + fmt:: Display + fmt:: Debug + hash:: Hash ;
166
155
@@ -172,6 +161,17 @@ pub trait MiniscriptKey: Clone + Eq + Ord + fmt::Debug + fmt::Display + hash::Ha
172
161
173
162
/// The type used in the hash160 fragment.
174
163
type Hash160 : Clone + Eq + Ord + fmt:: Display + fmt:: Debug + hash:: Hash ;
164
+
165
+ /// Returns true if the key is serialized uncompressed, defaults to `false`.
166
+ fn is_uncompressed ( & self ) -> bool ;
167
+
168
+ /// Returns true if the key is an x-only pubkey, defaults to `false`.
169
+ fn is_x_only_key ( & self ) -> bool ;
170
+
171
+ /// Returns the number of different derivation paths in this key, defaults to `0`.
172
+ ///
173
+ /// Only >1 for keys in BIP389 multipath descriptors.
174
+ fn num_der_paths ( & self ) -> usize ;
175
175
}
176
176
177
177
impl MiniscriptKey for bitcoin:: secp256k1:: PublicKey {
0 commit comments