mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-18 21:04:00 +01:00
12 lines
389 B
C
12 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 */
|