Closed mixmix closed 1 month ago
Ahh looks like we're good - https://github.com/entropyxyz/entropy-core/blob/master/pallets/programs/src/lib.rs#L237-L243
let mut hash_input = vec![];
hash_input.extend(&new_program);
hash_input.extend(&configuration_schema);
hash_input.extend(&auxiliary_data_schema);
hash_input.extend(&oracle_data_pointer);
hash_input.extend(&vec![version_number]);
let program_hash = T::Hashing::hash(&hash_input);
Hi all, we have
program_pointer
s and I'm just wanting to check that that hash is derived using all of:bytecode
configuration_schema
auxillary_data_schema
I did have a search of the repo but wasn't sure where to check that.