| 38 | } |
| 39 | |
| 40 | void json_parse(const cn::BinaryArray &msg) { |
| 41 | try { |
| 42 | common::JsonValue::from_string(common::as_string(msg)); |
| 43 | sideeffect(true); |
| 44 | } catch (const std::exception &ex) { |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | void address_parse(const cn::BinaryArray &msg) { |
| 49 | uint64_t tag = 0; |
no test coverage detected