ln-service 59.0.2 → 59.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 59.0.2
3
+ ## 59.0.4
4
4
 
5
5
  ### Breaking Changes
6
6
 
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "bolt07": "1.9.5",
11
11
  "invoices": "5.0.2",
12
- "lightning": "12.0.2",
12
+ "lightning": "12.0.3",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -55,5 +55,5 @@
55
55
  "integration-test-0.20.0": "DOCKER_LND_VERSION=v0.20.0-beta npm run test",
56
56
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
57
57
  },
58
- "version": "59.0.2"
58
+ "version": "59.0.4"
59
59
  }
@@ -275,7 +275,7 @@ test(`Open unconfirmed channels`, async () => {
275
275
 
276
276
  const [closeEvent] = closings;
277
277
 
278
- equal(closeEvent.id, confirmed.id, 'Closed event shows confirmed id');
278
+ match(closeEvent.id, /16000000x0/, 'Closed event shows confirmed id');
279
279
  deepEqual(closeEvent.other_ids, confirmed.other_ids, 'Got temporary id');
280
280
 
281
281
  const ephemeralIds = await getEphemeralChannelIds({lnd});