| 53 | } |
| 54 | |
| 55 | void initialize_process_message() |
| 56 | { |
| 57 | Assert(GetNumMsgTypes() == getAllNetMessageTypes().size()); // If this fails, add or remove the message type below |
| 58 | |
| 59 | static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(); |
| 60 | g_setup = testing_setup.get(); |
| 61 | for (int i = 0; i < 2 * COINBASE_MATURITY; i++) { |
| 62 | MineBlock(g_setup->m_node, CScript() << OP_TRUE); |
| 63 | } |
| 64 | SyncWithValidationInterfaceQueue(); |
| 65 | } |
| 66 | |
| 67 | void fuzz_target(FuzzBufferType buffer, const std::string& LIMIT_TO_MESSAGE_TYPE) |
| 68 | { |
nothing calls this directly
no test coverage detected