Post
Topic
Board Development & Technical Discussion
Re: The Lightning Network FAQ
by
n0nce
on 04/11/2021, 00:24:57 UTC
c-lightning v0.10.2 has been released. You should upgrade your nodes as this update patches the CVE-2021-41592 vulnerability. LND users should also update to v0.13.3-beta.
How do you recommend to update C-Lightning? I think this is how I did it so far, after having installed by compiling myself and checking out the correct release via git previously.

Code:
cd lightning
git pull
git checkout v0.10.2
./configure
make -j $(nproc)
sudo make install
sudo service lightningd restart