Skip to content

Commit 063b255

Browse files
committed
Move associated types to top of struct
There is no obvious reason why the associated types for `MiniscriptKey` are below the trait methods. Move them to the top.
1 parent 7270edf commit 063b255

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/lib.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -150,17 +150,6 @@ use crate::prelude::*;
150150

151151
/// Trait representing a key which can be converted to a hash type.
152152
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-
164153
/// The type used in the sha256 fragment.
165154
type Sha256: Clone + Eq + Ord + fmt::Display + fmt::Debug + hash::Hash;
166155

@@ -172,6 +161,17 @@ pub trait MiniscriptKey: Clone + Eq + Ord + fmt::Debug + fmt::Display + hash::Ha
172161

173162
/// The type used in the hash160 fragment.
174163
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;
175175
}
176176

177177
impl MiniscriptKey for bitcoin::secp256k1::PublicKey {

0 commit comments

Comments
 (0)