| 22 | "f7efb414ef4d3d8be39dd04374256d3b054a322d4a6ee22736d03b00000000"; |
| 23 | |
| 24 | static void hexeq(const void *p, size_t len, const char *hex) |
| 25 | { |
| 26 | char *tmphex = tal_hexstr(NULL, p, len); |
| 27 | |
| 28 | if (!streq(hex, tmphex)) { |
| 29 | fprintf(stderr, "Expected '%s' got '%s'", hex, tmphex); |
| 30 | abort(); |
| 31 | } |
| 32 | tal_free(tmphex); |
| 33 | } |
| 34 | |
| 35 | int main(int argc, const char *argv[]) |
| 36 | { |
no test coverage detected