I tried to compile it, but I took this error:
darksend.cpp: In member function bool CDarkSendPool::IsCollateralValid(const CTransaction&)
darksend.cpp:978:29: error: cannot convert bool to bool* in initialization
bool* pfMissingInputs = false;
I found the same
error with a solve, made the same (changed bool* to bool in 2 files), and then I received this message:
darksend.cpp: In member function bool CDarkSendPool::IsCollateralValid(const CTransaction&)
darksend.cpp:977:71: error: cannot convert bool to bool* for argument '4' to 'bool AcceptableInputs(CTxMemPool&, const CTransaction&, bool, bool*)'
if(!AcceptableInputs(mempool,txCollateral, false, pfMissingInputs )){
Should I continue changing bool* to bool or is it wrong way?