| 122 | } |
| 123 | |
| 124 | bool printwire_tu64(const char *fieldname, const u8 **cursor, size_t *plen) |
| 125 | { |
| 126 | u64 v = fromwire_tu64(cursor, plen); |
| 127 | if (!*cursor) { |
| 128 | printf("**TRUNCATED tu64 %s**\n", fieldname); |
| 129 | return false; |
| 130 | } |
| 131 | printf("%"PRIu64"\n", v); |
| 132 | return true; |
| 133 | } |
| 134 | |
| 135 | bool printwire_wireaddr(const char *fieldname, const u8 **cursor, size_t *plen) |
| 136 | { |
nothing calls this directly
no test coverage detected