-
Notifications
You must be signed in to change notification settings - Fork 906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Post v0.10 cleanups #4465
Post v0.10 cleanups #4465
Conversation
The main change which affects us is that 2016 blocks to forget a channel is a fixed number in the spec; we make this clear by renaming the (developer-only) max_funding_unconfirmed to dev_max_funding_unconfirmed and making it compile DEVELOPER only. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
f0223db
to
570b015
Compare
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Instead of "only check suffix quotes when EXPERIMENTAL_FEATURES", make it so we only check suffix quotes if you override BOLTVERSION on the cmdline. Before this, "make check-source-bolt" was effectively a NOOP with --enable-experimental-features. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
570b015
to
20a1e9f
Compare
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Changed: JSON-RPC: `close` now always returns notifications on delays.
20a1e9f
to
a99513f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK a99513f
@@ -651,7 +623,6 @@ def dev_pay(self, bolt11, msatoshi=None, label=None, riskfactor=None, | |||
"maxdelay": maxdelay, | |||
"exemptfee": exemptfee, | |||
"use_shadow": use_shadow, | |||
# Deprecated. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit, this isn't related to the other stuff changes, should be part of the next patch?
@@ -151,9 +151,6 @@ static struct command_result *json_newaddr(struct command *cmd, | |||
} | |||
|
|||
response = json_stream_success(cmd); | |||
if (deprecated_apis && *addrtype != ADDR_ALL) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
finally <3
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Removed: pyln: removed deprecated close `force` variant.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Removed: pyln: removed deprecated pay/sendpay `description` arg.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Removed: pyln: removed deprecated fundchannel/fundchannel_start `satoshi` arg.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Changed: plugins: we now always send `allow-deprecated-apis` in getmanifest.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Removed: JSON-RPC: `newaddr` no longer includes `address` field (deprecated in 0.7.1)
Should have really let @mschmook do this, as he did all the work to make it possible! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
a99513f
to
d36565f
Compare
This time I greped for
deprecated
...