mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-22 08:34:20 +01:00
With the rise of external HSMs like VLS, this is no longer an internal-only API. Fortunately, it doesn't change very fast so maintenance should not be a huge burden. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
294 B
C
10 lines
294 B
C
#ifndef LIGHTNING_COMMON_HSM_VERSION_H
|
|
#define LIGHTNING_COMMON_HSM_VERSION_H
|
|
#include "config.h"
|
|
|
|
/* We give a maximum and minimum compatibility version to HSM, to allow
|
|
* some API adaptation. */
|
|
#define HSM_MIN_VERSION 1
|
|
#define HSM_MAX_VERSION 1
|
|
#endif /* LIGHTNING_COMMON_HSM_VERSION_H */
|