pub fn public_keys_to_address_hash(
    hash_flag: &AddressHashMode,
    num_sigs: usize,
    pubkeys: &Vec<Secp256k1PublicKey>
) -> Hash160
Expand description

Convert a number of required signatures and a list of public keys into a byte-vec to hash to an address. Validity of the hash_flag vis a vis the num_sigs and pubkeys will NOT be checked. This is a low-level method. Consider using StacksAdress::from_public_keys() if you can.