1

I'm running a Lotus daemon and a new release was pushed to master. How do I upgrade to the latest version?

Andrew Nesbitt
  • 5,976
  • 1
  • 32
  • 36
jclay
  • 988
  • 1
  • 7
  • 10

1 Answers1

1

First, stop your daemon, then download the latest version:

git pull master

Then:

make clean && make all

Once that completes:

sudo make install

Now when you restart your daemon it should be on the latest version. To verify, run:

lotus --version

jclay
  • 988
  • 1
  • 7
  • 10
  • if your chain is synced `make clean` should not delete it. Once you install the new version it'll continue syncing where the old version left off. – jclay Oct 08 '20 at 05:46