(
&self,
)
| 31 | } |
| 32 | |
| 33 | pub fn commitment_public_keys( |
| 34 | &self, |
| 35 | ) -> Vec<BTreeMap<CommitmentMessageId, WinternitzPublicKey>> { |
| 36 | self.connectors_e |
| 37 | .iter() |
| 38 | .map(|connector| connector.commitment_public_keys.clone()) |
| 39 | .collect() |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | /// The number of connector e is related to the number of intermediate values. |
no test coverage detected