Closed 3nprob closed 3 years ago
I don't see how this would ever be possible. The internal database structure of the projects are just too different. And even if you could migrate the data itself, the derivation paths for the private keys are probably different as well.
@guggero Thanks for following up (and feel free to close if the following is considered OT here)
If my goal is to keep existing liquidity paths etc, would it make sense to:
cl-0
) with current channels with incoming liquidity, close pure outgoingslnd-1
)cl-0 -> lnd-1
(with 0 fees)lnd-2
lnd-2 -> cl-0
, lnd-1 -> lnd-2
(with 0 fees)My thinking being that the resulting triangle-node system will have the same net capacity and connectivity as the current single node, the only drawback apart from complexity being needing to lock up funds between the three nodes to keep those channels liquid
It feels like it should be possible to get a balanced channel between cl-0 <-> lnd-1
, thereby only needing one new node instead of two
It sounds like you're mostly concerned about preserving the inbound capacity of your node, correct? Setting up a triangle of nodes to allow shifting the balance around is one option, yes.
Another option would be:
cl-0
during a low-fee period (e.g. the weekend).lnd
node, send the on-chain funds from cl to lnd.Of course this would all incur both on-chain and off-chain fees. But would it reduce the complexity of the resulting system by replacing one node with another instead of running three nodes.
Closing the issue as suggested, can still discuss migration strategies here though.
I have an existing c-lightning / lightningd node with a bunch of open channels.
I am now realizing that my use-case reqiures functionlity that for now only exist as integrations for lnd and will require a lot of reimplementations and implementation of new plugins for c-lightning.
Therefore I'd like to migrate to lnd.
Given the work, time, and capital involved in getting my c-lightning node to where it is today, I'd really like to not start from zero again.
Has anyone attempted this, or have an idea about if it's even an effort worthwhile pursuing where things stand today?