| 74 | } |
| 75 | |
| 76 | bool printwire_tu64(const char *fieldname, const u8 **cursor, size_t *plen) |
| 77 | { |
| 78 | u64 v = fromwire_tu64(cursor, plen); |
| 79 | if (!*cursor) { |
| 80 | printf("**TRUNCATED tu64 %s**\n", fieldname); |
| 81 | return false; |
| 82 | } |
| 83 | printf("%"PRIu64"\n", v); |
| 84 | return true; |
| 85 | } |
| 86 | |
| 87 | bool printwire_wireaddr(const char *fieldname, const u8 **cursor, size_t *plen) |
| 88 | { |
nothing calls this directly
no test coverage detected