Compiling on a MacBook with macOS High Sierra.
Ran into the error below: CXX libbitcoin_server_a-miner.o miner.cpp:205:22: error: out-of-line definition of 'TestPackage' does not match any declaration in 'BlockAssembler' bool BlockAssembler::TestPackage(uint64_t packageSize, int64_t packageSigOpsCost) ^~~~~~~~~~~ ./miner.h:187:10: note: member declaration does not match because it is const qualified bool TestPackage(uint64_t packageSize, int64_t packageSigOpsCost) const;
I believe I fixed the error by removing "const" at the end of the "bool TestPackage" line in the miner.h file. (This was after fixing another error using the changes shown in #11847.)