Currently, when generating the committer key, we also hash the max degree along with the generators (https://github.com/HorizenLabs/poly-commit/blob/dev/src/ipa_pc/mod.rs#L684):
let hash = D::digest(&to_bytes![&generators, max_degree as u32].unwrap()).to_vec();
It seems to me we are hashing a duplicated information, since already generators.len() == max_degree.
Can we remove it from the hash ?