pub trait HasNonRootSubintentHashes {
// Required method
fn non_root_subintent_hashes(&self) -> Vec<SubintentHash>;
}
Required Methods§
Sourcefn non_root_subintent_hashes(&self) -> Vec<SubintentHash>
fn non_root_subintent_hashes(&self) -> Vec<SubintentHash>
§Validity Note
Preparable but invalid transactions may contain non-root subintents with duplicate SubintentHash
es.
Therefore we return a Vec
instead of an IndexSet
here.