Skip to content

Commit ee587af

Browse files
cdeckerrustyrussell
authored andcommitted
json-rpc: Disable listtransactions for the 0.7.1 release
Due to API instability we are disabling the RPC method for this release, but will re-enable it after the release again. Signed-off-by: Christian Decker <@cdecker>
1 parent 83f2ccd commit ee587af

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- JSON API: New command `setchannelfee` sets channel specific routing fees.
1313
- JSON API: new withdraw methods `txprepare`, `txsend` and `txdiscard`.
1414
- 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.
15-
- JSON API: new `listtransactions` command to show wallet history.
1615
- 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..
1716
- Plugin: new notification `warning` to report any `LOG_UNUSUAL`/`LOG_BROKEN` level event.
1817
- Plugin: Added a default plugin directory : `lightning_dir/plugins`. Each plugin directory it contains will be added to lightningd on startup.

wallet/walletrpc.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,7 @@ static const struct json_command dev_rescan_output_command = {
751751
};
752752
AUTODATA(json_command, &dev_rescan_output_command);
753753

754+
#if EXPERIMENTAL_FEATURES
754755
struct {
755756
enum wallet_tx_type t;
756757
const char *name;
@@ -824,3 +825,4 @@ static const struct json_command listtransactions_command = {
824825
"it closes the channel and returns funds to the wallet."
825826
};
826827
AUTODATA(json_command, &listtransactions_command);
828+
#endif

0 commit comments

Comments
 (0)