mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-04 14:54:26 +01:00
Otherwise I know we'll miss it. Simply check for a mention: we could well change things multiple times within a single release. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
18 lines
526 B
C
18 lines
526 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. */
|
|
|
|
/* wire/hsmd_wire.csv contents version:
|
|
* 409cffa355ab6cc76bd298910adca9936a68223267ddc4815ba16aeac5d0acc3
|
|
*/
|
|
#define HSM_MIN_VERSION 1
|
|
|
|
/* wire/hsmd_wire.csv contents version:
|
|
* 409cffa355ab6cc76bd298910adca9936a68223267ddc4815ba16aeac5d0acc3
|
|
*/
|
|
#define HSM_MAX_VERSION 1
|
|
#endif /* LIGHTNING_COMMON_HSM_VERSION_H */
|