core-lightning/bitcoin/privkey.h
Rusty Russell 25a37fafae type_to_string: add privkey.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2017-02-02 14:48:00 +10:30

11 lines
258 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 */