From 77018e6200bf861fbb8a284906c4eb2447f9f40a Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 18 Jun 2019 08:17:26 +0930 Subject: [PATCH] CHANGELOG.md: note the db_write hook and listtransactions command. Reported-by: @cdecker Signed-off-by: Rusty Russell --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d24f3c5..d26b8b0ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - JSON API: New command `setchannelfee` sets channel specific routing fees. - JSON API: new withdraw methods `txprepare`, `txsend` and `txdiscard`. - JSON API: add three new RPC commands: `fundchannel_start`, `fundchannel_complete` and `fundchannel_cancel`. Allows a user to initiate and complete a channel open using funds that are in a external wallet. -- Plugin: new hooks `invoice_payment` for intercepting invoices before they're paid, `openchannel` for intercepting channel opens, and `htlc_accepted` to decide whether to resolve, reject or continue an incoming or forwarded payment.. +- JSON API: new `listtransactions` command to show wallet history. +- Plugin: new hooks `db_write` for intercepting database writes, `invoice_payment` for intercepting invoices before they're paid, `openchannel` for intercepting channel opens, and `htlc_accepted` to decide whether to resolve, reject or continue an incoming or forwarded payment.. - Plugin: new notification `warning` to report any `LOG_UNUSUAL`/`LOG_BROKEN` level event. - Plugin: Added a default plugin directory : `lightning_dir/plugins`. Each plugin directory it contains will be added to lightningd on startup. - Plugin: the `connected` hook can now send an `error_message` to the rejected peer.