mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-05 21:44:42 +01:00
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
|