You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
484 B
19 lines
484 B
9 years ago
|
#ifndef LIGHTNING_DAEMON_WALLET_H
|
||
|
#define LIGHTNING_DAEMON_WALLET_H
|
||
|
#include "config.h"
|
||
|
|
||
|
struct wallet;
|
||
|
struct lightningd_state;
|
||
|
struct bitcoin_tx;
|
||
|
struct bitcoin_tx_output;
|
||
|
|
||
|
void wallet_add_signed_input(struct lightningd_state *dstate,
|
||
|
const struct wallet *w,
|
||
|
struct bitcoin_tx *tx,
|
||
|
unsigned int input_num);
|
||
|
|
||
|
struct wallet *wallet_can_spend(struct lightningd_state *dstate,
|
||
|
const struct bitcoin_tx_output *output);
|
||
|
|
||
|
#endif /* LIGHTNING_DAEMON_WALLET_H */
|