mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
11 lines
239 B
C
11 lines
239 B
C
|
#ifndef LIGHTNING_BITCOIN_PRIVKEY_H
|
||
|
#define LIGHTNING_BITCOIN_PRIVKEY_H
|
||
|
#include <ccan/short_types/short_types.h>
|
||
|
|
||
|
/* This is a private key. Keep it secret. */
|
||
|
struct privkey {
|
||
|
u8 secret[32];
|
||
|
};
|
||
|
|
||
|
#endif /* LIGHTNING_BITCOIN_PRIVKEY_H */
|