mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
3a7b3762a1
When we accept a bid to create a channel lease, we send back a signature committing to our max channel lease amounts.
14 lines
380 B
C
14 lines
380 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_COMMITMENT_POINT 8
|
|
#define HSM_CAP_SIGN_REMOTE_TX 16
|
|
#define HSM_CAP_SIGN_CLOSING_TX 32
|
|
#define HSM_CAP_SIGN_WILL_FUND_OFFER 64
|
|
|
|
#define HSM_CAP_MASTER 1024
|
|
#endif /* LIGHTNING_HSMD_CAPABILITIES_H */
|