mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
fff7dd0826
$ ./devtools/decodemsg 00110000000000000000000000000000000000000000000000000000000000000000000e496e7465726e616c206572726f72 WIRE_ERROR: channel_id=0000000000000000000000000000000000000000000000000000000000000000 data=[Internal error] Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
185 B
C
10 lines
185 B
C
#include <common/utils.h>
|
|
#include <devtools/gen_print_wire.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
u8 *m = tal_hexdata(NULL, argv[1], strlen(argv[1]));
|
|
print_message(m);
|
|
return 0;
|
|
}
|