-
I run my bitcoind node at home and Eclair on a VPS, and sometimes my home computer shuts down for various reasons, or I lose connectivity for some minutes. After that I always restart Eclair on the VPS because it apparently isn't able to pick up the connection to bitcoind again after it comes back, but this is just an impression based on not much more than nothing. Should I instead rely on Eclair getting back together on its own? That would be much better. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you detail what you mean exactly by that? For ZMQ, take a look at logs from the As for RPC calls, those don't require a long-lived connection, so they should just work when your node is back up. AFAIK you shouldn't need to restart eclair (and if that's not the case right now, we should improve it). |
Beta Was this translation helpful? Give feedback.
Can you detail what you mean exactly by that?
Which connection? ZMQ or RPC calls?
For ZMQ, take a look at logs from the
ZmqActor
in your file, you should see logs about connection/disconnection (eclair/eclair-core/src/main/scala/fr/acinq/eclair/blockchain/bitcoind/zmq/ZMQActor.scala
Line 84 in 498e9a7
As for RPC calls, those don't require a long-lived connection, so they should just work when your node is back up.
AFAIK you shouldn…