mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
b45b4eaba6
Three days of on and off debugging, before I realized my server was talking to a non-testnet bitcoind. There was a bitcoind on that machine running on testnet, but it uses the same dir and config, so the --bitcoin-datadir option couldn't help. This is more certain: specify whether we're testnet on every single query. Now we can skip the attempt to parse bitcoin.conf, too. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
101 lines
3.0 KiB
C
101 lines
3.0 KiB
C
#ifndef LIGHTNING_DAEMON_BITCOIND_H
|
|
#define LIGHTNING_DAEMON_BITCOIND_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/typesafe_cb/typesafe_cb.h>
|
|
#include <stdbool.h>
|
|
|
|
struct sha256_double;
|
|
struct lightningd_state;
|
|
struct ripemd160;
|
|
struct bitcoin_tx;
|
|
struct peer;
|
|
struct bitcoin_block;
|
|
/* -datadir arg for bitcoin-cli. */
|
|
extern char *bitcoin_datadir;
|
|
|
|
void bitcoind_estimate_fee_(struct lightningd_state *dstate,
|
|
void (*cb)(struct lightningd_state *dstate,
|
|
u64, void *),
|
|
void *arg);
|
|
|
|
#define bitcoind_estimate_fee(dstate, cb, arg) \
|
|
bitcoind_estimate_fee_((dstate), \
|
|
typesafe_cb_preargs(void, void *, \
|
|
(cb), (arg), \
|
|
struct lightningd_state *, \
|
|
u64), \
|
|
(arg))
|
|
|
|
void bitcoind_sendrawtx_(struct lightningd_state *dstate,
|
|
const char *hextx,
|
|
void (*cb)(struct lightningd_state *dstate,
|
|
const char *msg, void *),
|
|
void *arg);
|
|
|
|
#define bitcoind_sendrawtx(dstate, hextx, cb, arg) \
|
|
bitcoind_sendrawtx_((dstate), (hextx), \
|
|
typesafe_cb_preargs(void, void *, \
|
|
(cb), (arg), \
|
|
struct lightningd_state *, \
|
|
const char *), \
|
|
(arg))
|
|
|
|
void bitcoind_get_chaintip_(struct lightningd_state *dstate,
|
|
void (*cb)(struct lightningd_state *dstate,
|
|
const struct sha256_double *tipid,
|
|
void *arg),
|
|
void *arg);
|
|
|
|
#define bitcoind_get_chaintip(dstate, cb, arg) \
|
|
bitcoind_get_chaintip_((dstate), \
|
|
typesafe_cb_preargs(void, void *, \
|
|
(cb), (arg), \
|
|
struct lightningd_state *, \
|
|
const struct sha256_double *), \
|
|
(arg))
|
|
|
|
void bitcoind_getblockcount_(struct lightningd_state *dstate,
|
|
void (*cb)(struct lightningd_state *dstate,
|
|
u32 blockcount,
|
|
void *arg),
|
|
void *arg);
|
|
|
|
#define bitcoind_getblockcount(dstate, cb, arg) \
|
|
bitcoind_getblockcount_((dstate), \
|
|
typesafe_cb_preargs(void, void *, \
|
|
(cb), (arg), \
|
|
struct lightningd_state *, \
|
|
u32 blockcount), \
|
|
(arg))
|
|
|
|
void bitcoind_getblockhash_(struct lightningd_state *dstate,
|
|
u32 height,
|
|
void (*cb)(struct lightningd_state *dstate,
|
|
const struct sha256_double *blkid,
|
|
void *arg),
|
|
void *arg);
|
|
#define bitcoind_getblockhash(dstate, height, cb, arg) \
|
|
bitcoind_getblockhash_((dstate), \
|
|
(height), \
|
|
typesafe_cb_preargs(void, void *, \
|
|
(cb), (arg), \
|
|
struct lightningd_state *, \
|
|
const struct sha256_double *), \
|
|
(arg))
|
|
|
|
void bitcoind_getrawblock_(struct lightningd_state *dstate,
|
|
const struct sha256_double *blockid,
|
|
void (*cb)(struct lightningd_state *dstate,
|
|
struct bitcoin_block *blk,
|
|
void *arg),
|
|
void *arg);
|
|
#define bitcoind_getrawblock(dstate, blkid, cb, arg) \
|
|
bitcoind_getrawblock_((dstate), (blkid), \
|
|
typesafe_cb_preargs(void, void *, \
|
|
(cb), (arg), \
|
|
struct lightningd_state *, \
|
|
struct bitcoin_block *), \
|
|
(arg))
|
|
#endif /* LIGHTNING_DAEMON_BITCOIND_H */
|