mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
9e839b177c
If received lease rates are empty (all zeroes), turn them off
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 */
|