| 21 | )] |
| 22 | #[serde(into = "String", try_from = "String")] |
| 23 | pub enum CommitmentMessageId { |
| 24 | PegOutTxIdSourceNetwork, |
| 25 | PegOutTxIdDestinationNetwork, |
| 26 | StartTime, |
| 27 | Superblock, |
| 28 | SuperblockHash, |
| 29 | // name of intermediate value and length of message |
| 30 | Groth16IntermediateValues((String, usize)), |
| 31 | } |
| 32 | |
| 33 | const VAL_SEPARATOR: char = '|'; |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected