had some compiler error while trying to set up a remote masternode on a ubuntu.
anyone ran into this before?
/usr/local/include/boost/variant/get.hpp:178:5: error: invalid application of sizeof to incomplete type boost::STATIC_ASSERTION_FAILURE
BOOST_STATIC_ASSERT_MSG(
^
makefile.unix:213: recipe for target 'obj/rpcrawtransaction.o' failed
i know i've seen this before somewhere, but never kept records how to fix it.
thanks.
p.s. that 168k dump...ouch...seems like a pump and dump exit, or the WHALE playing...
Had the same problem;
edit rpcrawtransaction.cpp line 217
change
const CScriptID& hash = boost::get(address);
to
const CScriptID& hash = boost::get(address);
omg, thank you! that's it. life saver. will be putting some masternodes online.