lightning 10.8.0 → 10.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
- ## 10.8.0
3
+ ## 10.8.1
4
4
 
5
5
  - `removeAdvertisedFeature`: Add method to remove a feature bit support ad
6
6
 
package/README.md CHANGED
@@ -271,6 +271,8 @@ variables set:
271
271
  Attempt to recover channel funds from a specific channel backup.
272
272
  - [recoverFundsFromChannels](https://github.com/alexbosworth/ln-service#recoverfundsfromchannels):
273
273
  Attempt to recover funds from multiple channels using a multiple channel backup.
274
+ - [removeAdvertisedFeature](https://github.com/alexbosworth/ln-service#removeadvertisedfeature):
275
+ Remove a supported feature from the graph node announcement
274
276
  - [removeExternalSocket](https://github.com/alexbosworth/ln-service#removeexternalsocket):
275
277
  Remove a LN p2p network socket from the node advertisement
276
278
  - [removePeer](https://github.com/alexbosworth/ln-service#removepeer): Disconnect from a
@@ -388,6 +388,10 @@
388
388
  "method": "restoreChannelBackups",
389
389
  "type": "default"
390
390
  },
391
+ "removeAdvertisedFeature": {
392
+ "method": "updateNodeAnnouncement",
393
+ "type": "peers"
394
+ },
391
395
  "removeExternalSocket": {
392
396
  "method": "updateNodeAnnouncement",
393
397
  "type": "peers"
package/package.json CHANGED
@@ -53,5 +53,5 @@
53
53
  "directory": "test/typescript"
54
54
  },
55
55
  "types": "index.d.ts",
56
- "version": "10.8.0"
56
+ "version": "10.8.1"
57
57
  }