Skip to content

Commit b2a6912

Browse files
committed
Merge #75: call reduce0 from reduce1/2
085129f call reduce0 from reduce1/2 (Riccardo Casatta) Pull request description: once the terminal is wrapped it does the same checks and produce the same side effects same as rust-bitcoin/rust-miniscript#643 ACKs for top commit: apoelstra: ACK 085129f Tree-SHA512: 55ee7bdb5bbf3419808c5e0ab2d232feba6b91256e5ae11736726737d0fbb2c1cdfaa6df796c8cfbc3c81265eddeb83ddd9571f1a8e062a8fc8fcfea3bb13c0c
2 parents 32fee57 + 085129f commit b2a6912

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed

src/miniscript/decode.rs

+2-22
Original file line numberDiff line numberDiff line change
@@ -228,17 +228,7 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext, Ext: Extension> TerminalStack<Pk, Ct
228228
let top = self.pop().unwrap();
229229
let wrapped_ms = wrap(Arc::new(top));
230230

231-
let ty = Type::type_check(&wrapped_ms)?;
232-
let ext = ExtData::type_check(&wrapped_ms)?;
233-
let ms = Miniscript {
234-
node: wrapped_ms,
235-
ty,
236-
ext,
237-
phantom: PhantomData,
238-
};
239-
Ctx::check_global_validity(&ms)?;
240-
self.0.push(ms);
241-
Ok(())
231+
self.reduce0(wrapped_ms)
242232
}
243233

244234
///reduce, type check and push a 2-arg node
@@ -254,17 +244,7 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext, Ext: Extension> TerminalStack<Pk, Ct
254244

255245
let wrapped_ms = wrap(Arc::new(left), Arc::new(right));
256246

257-
let ty = Type::type_check(&wrapped_ms)?;
258-
let ext = ExtData::type_check(&wrapped_ms)?;
259-
let ms = Miniscript {
260-
node: wrapped_ms,
261-
ty,
262-
ext,
263-
phantom: PhantomData,
264-
};
265-
Ctx::check_global_validity(&ms)?;
266-
self.0.push(ms);
267-
Ok(())
247+
self.reduce0(wrapped_ms)
268248
}
269249
}
270250

0 commit comments

Comments
 (0)