(&mut self, data: &[u8])
| 235 | |
| 236 | impl Write for MerlinTranscript { |
| 237 | fn write(&mut self, data: &[u8]) -> ArkResult<usize> { |
| 238 | self.merlin |
| 239 | .append_message_with_non_static_label(&self.next_label, data); |
| 240 | Ok(data.len()) |
| 241 | } |
| 242 | |
| 243 | #[inline] |
| 244 | fn flush(&mut self) -> ArkResult<()> { |
nothing calls this directly
no test coverage detected