mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
12 lines
375 B
C
12 lines
375 B
C
|
#ifndef LIGHTNING_COMMON_HSM_CAPABLE_H
|
||
|
#define LIGHTNING_COMMON_HSM_CAPABLE_H
|
||
|
#include "config.h"
|
||
|
#include <ccan/short_types/short_types.h>
|
||
|
#include <ccan/tal/tal.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
/* Is this capability supported by the HSM? (So far, always a message
|
||
|
* number) */
|
||
|
bool hsm_is_capable(const u32 *capabilities, u32 msgtype);
|
||
|
#endif /* LIGHTNING_COMMON_HSM_CAPABLE_H */
|