mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-12 10:30:29 +01:00
10 lines
236 B
C
10 lines
236 B
C
|
#ifndef LIGHTNING_COMMON_LEASE_RATES_H
|
||
|
#define LIGHTNING_COMMON_LEASE_RATES_H
|
||
|
#include "config.h"
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
struct lease_rates;
|
||
|
|
||
|
bool lease_rates_empty(struct lease_rates *rates);
|
||
|
#endif /* LIGHTNING_COMMON_LEASE_RATES_H */
|