mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
10 lines
192 B
C
10 lines
192 B
C
#include <common/utils.h>
|
|
#include <devtools/gen_print_wire.h>
|
|
|
|
int main(int argc UNUSED, char *argv[])
|
|
{
|
|
u8 *m = tal_hexdata(NULL, argv[1], strlen(argv[1]));
|
|
print_message(m);
|
|
return 0;
|
|
}
|