Skip to content

Commit

Permalink
mark support for v0.10.2 and v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbosworth committed Jul 7, 2020
1 parent 9bf1d0a commit 1470f8a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 22 deletions.
23 changes: 9 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ through npm.

Supported LND versions:

- v0.10.1-beta
- v0.10.0-beta
- v0.9.2-beta
- v0.9.1-beta
- v0.9.0-beta
- v0.8.2-beta
- v0.8.1-beta
- v0.8.0-beta
- v0.10.3-beta to v0.10.0-beta
- v0.9.2-beta to v0.9.0-beta
- v0.8.2-beta to v0.8.0-beta
- v0.7.1-beta

## Installing LND
Expand Down Expand Up @@ -1173,7 +1168,7 @@ Get chain transactions.

Requires `onchain:read` permission

`after` and `before` are not supported on LND 0.10.0 and below
`after` and `before` are not supported on LND 0.10.2 and below

`description` is not returned in LND 0.10.1 and below

Expand Down Expand Up @@ -2458,7 +2453,7 @@ Get timelocked spend transactions related to channel closes

Requires `onchain:read` permission

This method is not suppoorted on LND 0.10.0 and below
This method is not suppoorted on LND 0.10.2 and below

{
lnd: <Authenticated LND API Object>
Expand Down Expand Up @@ -3057,7 +3052,7 @@ Specifying `messages` is not supported on LND 0.8.2 and below

Specifying `max_paths` is not suppoorted on LND 0.9.2 and below

Specifying `outgoing_channels` is not supported on LND 0.10.0 and below
Specifying `outgoing_channels` is not supported on LND 0.10.2 and below

{
[cltv_delta]: <Final CLTV Delta Number>
Expand Down Expand Up @@ -3150,7 +3145,7 @@ Specifying `messages` is not supported on LND 0.8.2 and below

Specifying `max_paths` is not suppoorted on LND 0.9.2 and below

Specifying `outgoing_channels` is not supported on LND 0.10.0 and below
Specifying `outgoing_channels` is not supported on LND 0.10.2 and below

{
[incoming_peer]: <Pay Through Specific Final Hop Public Key Hex String>
Expand Down Expand Up @@ -4549,7 +4544,7 @@ Specifying `messages` is not supported on LND 0.8.2 and below

Specifying `max_paths` is not suppoorted on LND 0.9.2 and below

Specifying `outgoing_channels` is not supported on LND 0.10.0 and below
Specifying `outgoing_channels` is not supported on LND 0.10.2 and below

{
[cltv_delta]: <Final CLTV Delta Number>
Expand Down Expand Up @@ -4663,7 +4658,7 @@ Specifying `max_fee_mtokens`/`mtokens` is not supported in LND 0.8.2 or below

Specifying `max_paths` is not suppoorted on LND 0.9.2 and below

Specifying `outgoing_channels` is not supported on LND 0.10.0 and below
Specifying `outgoing_channels` is not supported on LND 0.10.2 and below

{
[incoming_peer]: <Pay Through Specific Final Hop Public Key Hex String>
Expand Down
2 changes: 1 addition & 1 deletion lightning/get_chain_transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const offset = 1;
Requires `onchain:read` permission
`after` and `before` are not supported on LND 0.10.0 and below
`after` and `before` are not supported on LND 0.10.2 and below
`description` is not returned in LND 0.10.1 and below
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"express": "4.17.1",
"invoices": "1.1.0",
"is-base64": "1.1.0",
"lightning": "2.0.21",
"lightning": "2.0.22",
"macaroon": "3.0.4",
"morgan": "1.10.0",
"ws": "7.3.1"
Expand Down
2 changes: 2 additions & 0 deletions test/integration/test_get_chain_transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ test(`Get chain transactions`, async ({deepIs, end, equal, fail}) => {
const wallet = await getWalletVersion({lnd});

const unsupportingCommits = {
'0d5b0fefa4d9082f7964836f5e58c3a6bda8e471': true,
'1e04b7f54360427a23a5daf4a5a0648e6a81f3a6': true,
'4f2221d56c8212ddc4f48a4e6a6ee57255e61195': true,
'ae6e84ddfd3c4d2366e151a04aca3f78b4078ed5': true,
'd62c575f8499a314eb27f12462d20500b6bda2c7': true,
'e8833042799d71dba209fe305ce3ae105c154cfe': true,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ test(`Pay via payment request`, async ({deepIs, end, equal, rejects}) => {
switch (version) {
case '0.10.1-beta':
case '0.10.2-beta':
case '0.10.3-beta':
await cluster.kill({});

return end();
Expand Down

0 comments on commit 1470f8a

Please sign in to comment.