when trying to compile for solo mining with make -f makefile.unix test i get following error:
root/Zcoinclassic-master/src/main.h:698:10: note: candidate expects 4 arguments, 1 provided
In file included from /usr/include/boost/test/unit_test.hpp:19:0,
from test/transaction_tests.cpp:3:
test/transaction_tests.cpp:170:51: error: no matching function for call to 'CTransacti on::CheckTransaction(CValidationState&)'
BOOST_CHECK_MESSAGE(!tx.CheckTransaction(state) || !state.IsValid(), "Transaction
^
In file included from test/transaction_tests.cpp:6:0:
/root/Zcoinclassic-master/src/main.h:698:10: note: candidate: bool CTransaction::Check Transaction(CValidationState&, uint256, bool, int) const
bool CheckTransaction(CValidationState &state, uint256 hashTx, bool isVerifyDB, i
^
/root/Zcoinclassic-master/src/main.h:698:10: note: candidate expects 4 arguments, 1 provided
makefile.unix:231: recipe for target 'obj-test/transaction_tests.o' failed
make: *** [obj-test/transaction_tests.o] Error 1
root@Server:~/Zcoinclassic-master/src#
What is here wrong?