You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/FAQ.md
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -159,12 +159,22 @@ Which is to say that channels created after block [598000](https://blockstream.i
159
159
160
160
You can verify it using the `features` field from the [`listpeers` command](https://lightning.readthedocs.io/lightning-listpeers.7.html)'s result.
161
161
162
-
Here is an example in Python checking if [one of the `option_static_remotekey` bits](https://github.com/lightningnetwork/lightning-rfc/blob/master/09-features.md) is set in the negotiated features corresponding to `0x02aaa2`:
162
+
Here is an example in Python checking if [one of the `option_static_remotekey` bits][spec-features] is set in the negotiated features corresponding to `0x02aaa2`:
163
163
```python
164
164
>>>bool(0x02aaa2& ((1<<12) | (1<<13)))
165
165
True
166
166
```
167
167
168
+
If `option_static_remotekey` is enabled you can attempt to recover the
169
+
funds in a channel following [this tutorial][mandelbit-recovery] on
170
+
how to extract the necessary information from the network topology. If
171
+
successful, result will be a private key matching a unilaterally
172
+
closed channel, that you can import into any wallet, recovering the
0 commit comments