Trying to compile the daemon on linux:
~/mojocoin/src $ make -f makefile.unix
I get the error:
main.cpp:2306:31: error: ‘HARD_FORK_BLOCK’ was not declared in this scope
if (pindexPrev->nHeight > HARD_FORK_BLOCK)
After adding on the line 29 of main.h the following line:
static const signed int HARD_FORK_BLOCK = 100000;
I get the error:
wallet.cpp:3879:68: error: too few arguments to function ‘int64_t GetProofOfStakeReward(const CBlockIndex*, int64_t, int64_t, int64_t)’
nReward = GetProofOfStakeReward(pindexPrev, nCoinAge, nFees);
Any ideas?