Had a lot of problems when trying to make binaries for linux from source. If anyone is trying to build binaries for Ubuntu 22.04. Here is what worked for me.
source:
https://github.com/mooncoincore/wallet/releases/tag/v0.17.1.0There are few errors. Missing headers.
add:
#include <deque>
to "src/httpserver.cpp"
line:34
add:
#include <boost/bind.hpp>
to "src/validation.cpp"
line:47
add:
#include <boost/bind.hpp>
to "src/validationinterface.cpp"
line:7
Just sharing so you don't loose whole day like i did
