'satellite' is spelled 'staellite' instead ... ...
in any case - compilation errors in the latest gcc61 doesnt allow compilation fedora 24 x64 ...
some ive fixed - due to mode changes ( executable ) in some of the files in git for leveldb and secp256k1 and also new gcc61 syntax - but the compilation error below is an actual programming issue which may also be a gcc61 syntax correction ... though i cannot seem to find anything regarding the fix for such an error recently as a great deal of fixed were back in gcc47 and gcc53 in 2014 / 2015 ...
bool* pfMissingInputs = false;
^~~~~
makefile.unix:211: recipe for target 'obj/darksend.o' failed
make: *** [obj/darksend.o] Error 1
and when trying to compile with qt5 in the same system - the same error - just in a different compilation area ...
src/masternode.cpp:162:26: error: cannot convert ‘bool’ to ‘bool*’ in initialization
bool* pfMissingInputs = false;
^~~~~
src/masternode.cpp: In member function ‘void CMasterNode::Check()’:
src/masternode.cpp:606:33: error: cannot convert ‘bool’ to ‘bool*’ in initialization
bool* pfMissingInputs = false;
^~~~~
Makefile:4572: recipe for target 'build/masternode.o' failed
make: *** [build/masternode.o] Error 1
any ideas josh? ... anyone? ...
#crysx