|
|
@ -6,7 +6,8 @@ const char *notification_topics[] = { |
|
|
|
"connect", |
|
|
|
"disconnect", |
|
|
|
"warning", |
|
|
|
"invoice_payment" |
|
|
|
"invoice_payment", |
|
|
|
"channel_opened" |
|
|
|
}; |
|
|
|
|
|
|
|
bool notifications_have_topic(const char *topic) |
|
|
@ -76,3 +77,19 @@ void notify_invoice_payment(struct lightningd *ld, struct amount_msat amount, |
|
|
|
jsonrpc_notification_end(n); |
|
|
|
plugins_notify(ld->plugins, take(n)); |
|
|
|
} |
|
|
|
|
|
|
|
void notify_channel_opened(struct lightningd *ld, struct node_id *node_id, |
|
|
|
struct amount_sat *funding_sat, struct bitcoin_txid *funding_txid, |
|
|
|
bool *funding_locked) |
|
|
|
{ |
|
|
|
struct jsonrpc_notification *n = |
|
|
|
jsonrpc_notification_start(NULL, "channel_opened"); |
|
|
|
json_object_start(n->stream, "channel_opened"); |
|
|
|
json_add_node_id(n->stream, "id", node_id); |
|
|
|
json_add_amount_sat_only(n->stream, "amount", *funding_sat); |
|
|
|
json_add_txid(n->stream, "funding_txid", funding_txid); |
|
|
|
json_add_bool(n->stream, "funding_locked", funding_locked); |
|
|
|
json_object_end(n->stream); |
|
|
|
jsonrpc_notification_end(n); |
|
|
|
plugins_notify(ld->plugins, take(n)); |
|
|
|
} |
|
|
|