mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
d733e82352
This makes merging easier in future. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
259 B
C
12 lines
259 B
C
#ifndef LIGHTNING_BITCOIN_PRIVKEY_H
|
|
#define LIGHTNING_BITCOIN_PRIVKEY_H
|
|
#include "config.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 */
|