1

I installed bitcoind and trying to run lightningd through this guide: https://github.com/ElementsProject/lightning/blob/master/doc/INSTALL.md#to-build-on-macos.

I did everything it says. Bitcoin node is running, blokcs are up to date but when I do "./lightningd/lightningd", it throws a message: "SQLITE version mismatch: compiled 3036000, now 3032003".

How do I fix this and run a lightning node?

Efe
  • 301
  • 1
  • 14

1 Answers1

2

Since losing the database could lead to loss of funds, C-lightning is a bit conservative and will only accept to start against a SQLite runtime dependency of the same version it was compiled with.

To solve this issue, just recompile lightningd.

Antoine Poinsot
  • 5,881
  • 2
  • 11
  • 28