mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
6da97e6461
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
13 lines
389 B
C
13 lines
389 B
C
#ifndef LIGHTNING_WALLET_WALLETRPC_H
|
|
#define LIGHTNING_WALLET_WALLETRPC_H
|
|
#include "config.h"
|
|
|
|
struct utxo;
|
|
|
|
/* We evaluate reserved timeouts lazily, so use this. */
|
|
bool is_reserved(const struct utxo *utxo, u32 current_height);
|
|
|
|
bool WARN_UNUSED_RESULT newaddr_inner(struct command *cmd, struct pubkey *pubkey,
|
|
enum addrtype addrtype);
|
|
#endif /* LIGHTNING_WALLET_WALLETRPC_H */
|