Skip to content

Commit fdea7f6

Browse files
committed
types: drop Property trait entirely
This trait is now only used on the `Type` type. Drop the trait, rename the `from_` constructors, and remove unused parameters and type parameters. Most of the methods can now be constfns. Will do this in the next commit since it's a bit annoying (mainly: can't use ?, have to be explicit about early returns).
1 parent b25023d commit fdea7f6

File tree

3 files changed

+69
-200
lines changed

3 files changed

+69
-200
lines changed

src/miniscript/mod.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ mod tests {
702702
use sync::Arc;
703703

704704
use super::{Miniscript, ScriptContext, Segwitv0, Tap};
705-
use crate::miniscript::types::{self, ExtData, Property, Type};
705+
use crate::miniscript::types::{self, ExtData, Type};
706706
use crate::miniscript::Terminal;
707707
use crate::policy::Liftable;
708708
use crate::prelude::*;
@@ -890,7 +890,7 @@ mod tests {
890890

891891
let pk_node = Terminal::Check(Arc::new(Miniscript {
892892
node: Terminal::PkK(String::from("")),
893-
ty: Type::from_pk_k::<Segwitv0>(),
893+
ty: Type::pk_k(),
894894
ext: types::extra_props::ExtData::pk_k::<Segwitv0>(),
895895
phantom: PhantomData,
896896
}));
@@ -899,7 +899,7 @@ mod tests {
899899

900900
let pkh_node = Terminal::Check(Arc::new(Miniscript {
901901
node: Terminal::PkH(String::from("")),
902-
ty: Type::from_pk_h::<Segwitv0>(),
902+
ty: Type::pk_h(),
903903
ext: types::extra_props::ExtData::pk_h::<Segwitv0>(),
904904
phantom: PhantomData,
905905
}));
@@ -920,7 +920,7 @@ mod tests {
920920

921921
let pkk_node = Terminal::Check(Arc::new(Miniscript {
922922
node: Terminal::PkK(pk),
923-
ty: Type::from_pk_k::<Segwitv0>(),
923+
ty: Type::pk_k(),
924924
ext: types::extra_props::ExtData::pk_k::<Segwitv0>(),
925925
phantom: PhantomData,
926926
}));
@@ -935,11 +935,11 @@ mod tests {
935935
let pkh_ms: Segwitv0Script = Miniscript {
936936
node: Terminal::Check(Arc::new(Miniscript {
937937
node: Terminal::RawPkH(hash),
938-
ty: Type::from_pk_h::<Segwitv0>(),
938+
ty: Type::pk_h(),
939939
ext: types::extra_props::ExtData::pk_h::<Segwitv0>(),
940940
phantom: PhantomData,
941941
})),
942-
ty: Type::cast_check(Type::from_pk_h::<Segwitv0>()).unwrap(),
942+
ty: Type::cast_check(Type::pk_h()).unwrap(),
943943
ext: ExtData::cast_check(ExtData::pk_h::<Segwitv0>()),
944944
phantom: PhantomData,
945945
};

0 commit comments

Comments
 (0)