worldcoin / iris-mpc

iris-mpc repository
Apache License 2.0
8 stars 1 forks source link

expose partial matches #534

Open philsippl opened 2 days ago

philsippl commented 2 days ago

Extends the UniquenessResult with partial results for both eyes.

pub struct UniquenessResult {
    // ...
    pub matched_serial_ids:       Option<Vec<u32>>,
    pub matched_serial_ids_left:  Option<Vec<u32>>, // New
    pub matched_serial_ids_right: Option<Vec<u32>>, // New
}
philsippl commented 1 day ago

consumer of this message (signup service) probably need to get adapted to additional fields, please do before merging.