lightning 5.8.0 → 5.8.1

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
- ## 5.8.0
3
+ ## 5.8.1
4
4
 
5
5
  - `getMasterPublicKeys`: Add method to lookup wallet extended public keys
6
6
 
@@ -96,6 +96,11 @@ module.exports = ({lnd}) => {
96
96
  return;
97
97
  }
98
98
 
99
+ // Exit early when there is no payment
100
+ if (!res.payment) {
101
+ return;
102
+ }
103
+
99
104
  // Emit payment details
100
105
  return emitter.emit(event, res.payment);
101
106
  });
package/package.json CHANGED
@@ -10,16 +10,16 @@
10
10
  "@grpc/grpc-js": "1.5.5",
11
11
  "@grpc/proto-loader": "0.6.9",
12
12
  "@types/express": "4.17.13",
13
- "@types/node": "17.0.17",
13
+ "@types/node": "17.0.18",
14
14
  "@types/request": "2.48.8",
15
15
  "@types/ws": "8.2.2",
16
16
  "async": "3.2.3",
17
17
  "asyncjs-util": "1.2.8",
18
18
  "bitcoinjs-lib": "6.0.1",
19
19
  "bn.js": "5.2.0",
20
- "body-parser": "1.19.1",
20
+ "body-parser": "1.19.2",
21
21
  "bolt07": "1.8.0",
22
- "bolt09": "0.2.1",
22
+ "bolt09": "0.2.2",
23
23
  "cbor": "8.1.0",
24
24
  "ecpair": "2.0.1",
25
25
  "express": "4.17.2",
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "5.8.0"
62
+ "version": "5.8.1"
63
63
  }