core-lightning/wire/wire_dummy.c
Rusty Russell 2cd93597cc wire.c: import bolt 12 offers CSV.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2020-12-09 16:40:13 +10:30

16 lines
333 B
C

#include <wire/wire.h>
#if !EXPERIMENTAL_FEATURES
/* Stubs, as this subtype is only defined when EXPERIMENTAL_FEATURES */
void towire_onionmsg_path(u8 **p, const struct onionmsg_path *onionmsg_path)
{
abort();
}
struct onionmsg_path *
fromwire_onionmsg_path(const tal_t *ctx, const u8 **cursor, size_t *plen)
{
abort();
}
#endif