Skip to content

Commit ebae0ef

Browse files
committed
miniscript: remove unused Result from extdata type_check
1 parent d05a034 commit ebae0ef

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/miniscript/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ mod private {
163163
pub fn from_ast(t: Terminal<Pk, Ctx>) -> Result<Miniscript<Pk, Ctx>, Error> {
164164
let res = Miniscript {
165165
ty: Type::type_check(&t)?,
166-
ext: ExtData::type_check(&t)?,
166+
ext: ExtData::type_check(&t),
167167
node: t,
168168
phantom: PhantomData,
169169
};

src/miniscript/types/extra_props.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use core::cmp;
77
use core::iter::once;
88

9-
use super::{Error, ScriptContext};
9+
use super::ScriptContext;
1010
use crate::miniscript::context::SigType;
1111
use crate::prelude::*;
1212
use crate::{script_num_size, AbsLockTime, MiniscriptKey, RelLockTime, Terminal};
@@ -924,7 +924,7 @@ impl ExtData {
924924

925925
/// Compute the type of a fragment assuming all the children of
926926
/// Miniscript have been computed already.
927-
pub fn type_check<Pk, Ctx>(fragment: &Terminal<Pk, Ctx>) -> Result<Self, Error>
927+
pub fn type_check<Pk, Ctx>(fragment: &Terminal<Pk, Ctx>) -> Self
928928
where
929929
Ctx: ScriptContext,
930930
Pk: MiniscriptKey,
@@ -990,7 +990,7 @@ impl ExtData {
990990
}
991991
};
992992
ret.sanity_checks();
993-
Ok(ret)
993+
ret
994994
}
995995
}
996996

src/policy/compiler.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> AstElemExt<Pk, Ctx> {
540540
//Types and ExtData are already cached and stored in children. So, we can
541541
//type_check without cache. For Compiler extra data, we supply a cache.
542542
let ty = types::Type::type_check(&ast)?;
543-
let ext = types::ExtData::type_check(&ast)?;
543+
let ext = types::ExtData::type_check(&ast);
544544
let comp_ext_data = CompilerExtData::type_check_with_child(&ast, lookup_ext);
545545
Ok(AstElemExt {
546546
ms: Arc::new(Miniscript::from_components_unchecked(ast, ty, ext)),
@@ -563,7 +563,7 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> AstElemExt<Pk, Ctx> {
563563
//Types and ExtData are already cached and stored in children. So, we can
564564
//type_check without cache. For Compiler extra data, we supply a cache.
565565
let ty = types::Type::type_check(&ast)?;
566-
let ext = types::ExtData::type_check(&ast)?;
566+
let ext = types::ExtData::type_check(&ast);
567567
let comp_ext_data = CompilerExtData::type_check_with_child(&ast, lookup_ext);
568568
Ok(AstElemExt {
569569
ms: Arc::new(Miniscript::from_components_unchecked(ast, ty, ext)),

0 commit comments

Comments
 (0)