mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
9eabab78ab
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
232 B
C
10 lines
232 B
C
#include "utils.h"
|
|
#include <ccan/str/hex/hex.h>
|
|
|
|
char *tal_hexstr(const tal_t *ctx, const void *data, size_t len)
|
|
{
|
|
char *str = tal_arr(ctx, char, hex_str_size(len));
|
|
hex_encode(data, len, str, hex_str_size(len));
|
|
return str;
|
|
}
|