Skip to content

Commit cae8d57

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. Note, the diff shows moving functions not associated types - same thing. Refactor only, no logic changes.
1 parent 3da9e12 commit cae8d57

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
@@ -155,17 +155,6 @@ pub use crate::primitives::relative_locktime::{RelLockTime, RelLockTimeError};
155155

156156
/// Trait representing a key which can be converted to a hash type.
157157
pub trait MiniscriptKey: Clone + Eq + Ord + fmt::Debug + fmt::Display + hash::Hash {
158-
/// Returns true if the key is serialized uncompressed.
159-
fn is_uncompressed(&self) -> bool;
160-
161-
/// Returns true if the key is an x-only pubkey.
162-
fn is_x_only_key(&self) -> bool;
163-
164-
/// Returns the number of different derivation paths in this key.
165-
///
166-
/// Only >1 for keys in BIP389 multipath descriptors.
167-
fn num_der_paths(&self) -> usize;
168-
169158
/// The type used in the sha256 fragment.
170159
type Sha256: Clone + Eq + Ord + fmt::Display + fmt::Debug + hash::Hash;
171160

@@ -177,6 +166,17 @@ pub trait MiniscriptKey: Clone + Eq + Ord + fmt::Debug + fmt::Display + hash::Ha
177166

178167
/// The type used in the hash160 fragment.
179168
type Hash160: Clone + Eq + Ord + fmt::Display + fmt::Debug + hash::Hash;
169+
170+
/// Returns true if the key is serialized uncompressed.
171+
fn is_uncompressed(&self) -> bool;
172+
173+
/// Returns true if the key is an x-only pubkey.
174+
fn is_x_only_key(&self) -> bool;
175+
176+
/// Returns the number of different derivation paths in this key.
177+
///
178+
/// Only >1 for keys in BIP389 multipath descriptors.
179+
fn num_der_paths(&self) -> usize;
180180
}
181181

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

0 commit comments

Comments
 (0)