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 +1 -1
- package/README.md +2 -0
- package/lnd_methods/macaroon/methods.json +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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