mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 15:00:34 +01:00
13 lines
387 B
C
13 lines
387 B
C
|
#ifndef LIGHTNING_PLUGINS_RENEPAY_ROUTEFAIL_H
|
||
|
#define LIGHTNING_PLUGINS_RENEPAY_ROUTEFAIL_H
|
||
|
|
||
|
/* This module provides the state machine for handling route failures. */
|
||
|
|
||
|
#include "config.h"
|
||
|
#include <plugins/renepay/route.h>
|
||
|
|
||
|
struct command_result *routefail_start(const tal_t *ctx, struct route *route,
|
||
|
struct command *cmd);
|
||
|
|
||
|
#endif /* LIGHTNING_PLUGINS_RENEPAY_ROUTEFAIL_H */
|