mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
2cd93597cc
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
333 B
C
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
|