Post
Topic
Board Announcements (Altcoins)
Re: [MOON] Mooncoin 🌙 built in 2013 with the future in mind
by
mameex
on 04/09/2023, 17:39:54 UTC
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.0

There are few errors. Missing headers.

add:
Code:
#include <deque>
to "src/httpserver.cpp"
line:34

add:
Code:
#include <boost/bind.hpp>
to "src/validation.cpp"
line:47

add:
Code:
#include <boost/bind.hpp>
to "src/validationinterface.cpp"
line:7

Just sharing so you don't loose whole day like i did Smiley