mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
9463e1b630
Much easier to save/restore to/from database in coming patch. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
22 lines
606 B
C
22 lines
606 B
C
#ifndef LIGHTNING_DAEMON_WALLET_H
|
|
#define LIGHTNING_DAEMON_WALLET_H
|
|
#include "config.h"
|
|
|
|
struct lightningd_state;
|
|
struct bitcoin_tx;
|
|
struct bitcoin_tx_output;
|
|
|
|
bool restore_wallet_address(struct lightningd_state *dstate,
|
|
const struct privkey *privkey);
|
|
|
|
bool wallet_add_signed_input(struct lightningd_state *dstate,
|
|
const struct pubkey *walletkey,
|
|
struct bitcoin_tx *tx,
|
|
unsigned int input_num);
|
|
|
|
bool wallet_can_spend(struct lightningd_state *dstate,
|
|
const struct bitcoin_tx_output *output,
|
|
struct pubkey *walletkey);
|
|
|
|
#endif /* LIGHTNING_DAEMON_WALLET_H */
|