(&self, event: &str)
| 962 | } |
| 963 | |
| 964 | fn find_event_hex_payload(&self, event: &str) -> Result<String> { |
| 965 | self.find_event(event) |
| 966 | .map(|event| hex::encode(&event.payload)) |
| 967 | } |
| 968 | |
| 969 | /// Decode the app-id from the event log |
| 970 | pub fn decode_app_id(&self) -> Result<String> { |
no test coverage detected