mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 18:57:06 +01:00
11 lines
378 B
C
11 lines
378 B
C
|
#ifndef LIGHTNING_LIGHTNINGD_COIN_MVTS_H
|
||
|
#define LIGHTNING_LIGHTNINGD_COIN_MVTS_H
|
||
|
#include "config.h"
|
||
|
|
||
|
#include <common/coin_mvt.h>
|
||
|
#include <lightningd/lightningd.h>
|
||
|
|
||
|
void notify_channel_mvt(struct lightningd *ld, const struct channel_coin_mvt *mvt);
|
||
|
void notify_chain_mvt(struct lightningd *ld, const struct chain_coin_mvt *mvt);
|
||
|
#endif /* LIGHTNING_LIGHTNINGD_COIN_MVTS_H */
|