pub struct LegacyOutputsPref {
pub pref: Vec<u8>,
}
Expand description
Prefix is initally encoded in the script pubkey User provides a suffix such that hash of (prefix || suffix) is equal to hashOutputs Since, there is a policy restriction that initial pushes must be only 80 bytes, we need user to provide suffix in separate items There can be atmost 7 cats, because the script element must be less than 520 bytes total in order to compute an hash256 on it. Even if the witness does not require 7 pushes, the user should push 7 elements with possibly empty values.
CAT CAT CAT CAT CAT CAT <pref> SWAP CAT
/*Now we hashoutputs on stack */
HASH256
DEPTH <10> SUB PICK EQUALVERIFY
Fields§
§pref: Vec<u8>
the version of transaction
Trait Implementations§
Source§impl Clone for LegacyOutputsPref
impl Clone for LegacyOutputsPref
Source§fn clone(&self) -> LegacyOutputsPref
fn clone(&self) -> LegacyOutputsPref
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LegacyOutputsPref
impl Debug for LegacyOutputsPref
Source§impl Display for LegacyOutputsPref
impl Display for LegacyOutputsPref
Source§impl Extension for LegacyOutputsPref
impl Extension for LegacyOutputsPref
Source§fn segwit_ctx_checks(&self) -> Result<(), ScriptContextError>
fn segwit_ctx_checks(&self) -> Result<(), ScriptContextError>
Validity rules for fragment in segwit context
Source§fn corr_prop(&self) -> Correctness
fn corr_prop(&self) -> Correctness
Calculate the correctness property for the leaf fragment.
See miniscript reference for more info on different types
Source§fn mall_prop(&self) -> Malleability
fn mall_prop(&self) -> Malleability
Calculate the malleability property for the leaf fragment.
See miniscript reference for more info on different types
Source§fn extra_prop(&self) -> ExtData
fn extra_prop(&self) -> ExtData
Calculate the Extra properties property for the leaf fragment.
See current implementation for different fragments in extra_props.rs
Source§fn script_size(&self) -> usize
fn script_size(&self) -> usize
Get the script size of the current fragment
Source§fn from_name_tree(
name: &str,
children: &[Tree<'_>],
) -> Result<Self, FromTokenIterError>
fn from_name_tree( name: &str, children: &[Tree<'_>], ) -> Result<Self, FromTokenIterError>
Create an instance of this object from a Tree with root name and children as
Vec<Tree>
.Source§fn tap_ctx_checks(&self) -> Result<(), ScriptContextError>
fn tap_ctx_checks(&self) -> Result<(), ScriptContextError>
Validity rules for fragment in tap context
Source§impl Hash for LegacyOutputsPref
impl Hash for LegacyOutputsPref
Source§impl<Pk: MiniscriptKey> Liftable<Pk> for LegacyOutputsPref
impl<Pk: MiniscriptKey> Liftable<Pk> for LegacyOutputsPref
Source§impl Ord for LegacyOutputsPref
impl Ord for LegacyOutputsPref
Source§fn cmp(&self, other: &LegacyOutputsPref) -> Ordering
fn cmp(&self, other: &LegacyOutputsPref) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl ParseableExt for LegacyOutputsPref
impl ParseableExt for LegacyOutputsPref
Source§fn satisfy<Pk, S>(&self, sat: &S) -> Satisfactionwhere
Pk: ToPublicKey,
S: Satisfier<Pk>,
fn satisfy<Pk, S>(&self, sat: &S) -> Satisfactionwhere
Pk: ToPublicKey,
S: Satisfier<Pk>,
Produce a satisfaction for this from satisfier.
See satisfaction code in satisfy.rs for example
Note that the
Satisfaction
struct also covers the case when
satisfaction is impossible/unavailableSource§fn dissatisfy<Pk, S>(&self, sat: &S) -> Satisfactionwhere
Pk: ToPublicKey,
S: Satisfier<Pk>,
fn dissatisfy<Pk, S>(&self, sat: &S) -> Satisfactionwhere
Pk: ToPublicKey,
S: Satisfier<Pk>,
Produce a satisfaction for this from satisfier.
See satisfaction code in satisfy.rs for example
Note that the
Satisfaction
struct also covers the case when
dissatisfaction is impossible/unavailableSource§fn push_to_builder(&self, builder: Builder) -> Builder
fn push_to_builder(&self, builder: Builder) -> Builder
Encoding of the current fragment
Source§fn from_token_iter(
tokens: &mut TokenIter<'_>,
) -> Result<Self, FromTokenIterError>
fn from_token_iter( tokens: &mut TokenIter<'_>, ) -> Result<Self, FromTokenIterError>
Parse the terminal from
TokenIter
. Implementers of this trait are responsible
for making sure tokens is mutated correctly. If parsing is not successful, the tokens
should not be consumed.Source§fn evaluate(
&self,
stack: &mut Stack<'_>,
_txenv: Option<&TxEnv<'_, '_>>,
) -> Result<bool, Error>
fn evaluate( &self, stack: &mut Stack<'_>, _txenv: Option<&TxEnv<'_, '_>>, ) -> Result<bool, Error>
Interpreter support
Evaluate the fragment based on inputs from stack. If an implementation of this
is provided the user can use the interpreter API to parse scripts from blockchain
and check which constraints are satisfied
Output Ok(true) when the ext fragment is satisfied.
Output Ok(false) when the ext fragment is dissatisfied,
Output Some(Err) when there is an error in interpreter value.
Source§impl PartialEq for LegacyOutputsPref
impl PartialEq for LegacyOutputsPref
Source§impl PartialOrd for LegacyOutputsPref
impl PartialOrd for LegacyOutputsPref
impl Eq for LegacyOutputsPref
impl StructuralPartialEq for LegacyOutputsPref
Auto Trait Implementations§
impl Freeze for LegacyOutputsPref
impl RefUnwindSafe for LegacyOutputsPref
impl Send for LegacyOutputsPref
impl Sync for LegacyOutputsPref
impl Unpin for LegacyOutputsPref
impl UnwindSafe for LegacyOutputsPref
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more