Post
Topic
Board Announcements (Altcoins)
Re: New coin using ED25519 signing keys -- need help getting it off the ground
by
Mandolorian
on 06/12/2021, 18:46:07 UTC
If anyone will have problems with LevelDB on Ubuntu 20.04 you can install it  by

sudo apt-get install libsnappy-dev

export VER="1.20"
wget https://github.com/google/leveldb/archive/v${VER}.tar.gz
tar xvf v${VER}.tar.gz
rm -f v${VER}.tar.gz


cd leveldb-${VER}


make
sudo scp -r out-static/lib* out-shared/lib* "/usr/local/lib"
cd include
sudo scp -r leveldb /usr/local/include
sudo ldconfig



Thanks, it helped  Smiley