mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-21 14:54:22 +01:00
This handles the "to-us" transactions which return funds to the wallet. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
236 B
C
10 lines
236 B
C
#ifndef LIGHTNING_HSMD_CAPABILITIES_H
|
|
#define LIGHTNING_HSMD_CAPABILITIES_H
|
|
|
|
#define HSM_CAP_ECDH 1
|
|
#define HSM_CAP_SIGN_GOSSIP 2
|
|
#define HSM_CAP_SIGN_ONCHAIN_TX 4
|
|
|
|
#define HSM_CAP_MASTER 1024
|
|
#endif /* LIGHTNING_HSMD_CAPABILITIES_H */
|