You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
341 B
13 lines
341 B
9 years ago
|
#ifndef LIGHTNING_DAEMON_CHAINTOPOLOGY_H
|
||
|
#define LIGHTNING_DAEMON_CHAINTOPOLOGY_H
|
||
|
#include "config.h"
|
||
|
#include <stddef.h>
|
||
|
|
||
|
struct lightningd_state;
|
||
|
struct txwatch;
|
||
|
|
||
|
size_t get_tx_depth(struct lightningd_state *dstate, const struct txwatch *w);
|
||
|
void setup_topology(struct lightningd_state *dstate);
|
||
|
|
||
|
#endif /* LIGHTNING_DAEMON_CRYPTOPKT_H */
|