mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
4ffda340d3
And turn "" includes into full-path (which makes it easier to put config.h first, and finds some cases check-includes.sh missed previously). config.h sets _GNU_SOURCE which really needs to be done before any '#includes': we mainly got away with it with glibc, but other platforms like Alpine may have stricter requirements. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
22 lines
450 B
C
22 lines
450 B
C
#include "config.h"
|
|
#include "common/utils.h"
|
|
#include <tests/fuzz/libfuzz.h>
|
|
|
|
#include <common/addr.h>
|
|
#include <common/setup.h>
|
|
|
|
void init(int *argc, char ***argv)
|
|
{
|
|
chainparams = chainparams_for_network("bitcoin");
|
|
common_setup("fuzzer");
|
|
}
|
|
|
|
void run(const uint8_t *data, size_t size)
|
|
{
|
|
uint8_t *script_pubkey = tal_dup_arr(tmpctx, uint8_t, data, size, 0);
|
|
|
|
encode_scriptpubkey_to_addr(tmpctx, chainparams, script_pubkey);
|
|
|
|
clean_tmpctx();
|
|
}
|