| 17 | /// - `payload` is the address of the committed constant |
| 18 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
| 19 | pub struct Comm { |
| 20 | /// Address of the blinding secret (in blobs map) |
| 21 | pub secret: Address, |
| 22 | /// Address of the committed constant |
| 23 | pub payload: Address, |
| 24 | } |
| 25 | |
| 26 | impl Comm { |
| 27 | pub fn new(secret: Address, payload: Address) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected