Trait HasNonRootSubintentHashes

Source
pub trait HasNonRootSubintentHashes {
    // Required method
    fn non_root_subintent_hashes(&self) -> Vec<SubintentHash>;
}

Required Methods§

Source

fn non_root_subintent_hashes(&self) -> Vec<SubintentHash>

§Validity Note

Preparable but invalid transactions may contain non-root subintents with duplicate SubintentHashes. Therefore we return a Vec instead of an IndexSet here.

Implementors§