| 22 | } // namespace |
| 23 | |
| 24 | void initialize_process_messages() |
| 25 | { |
| 26 | static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(); |
| 27 | g_setup = testing_setup.get(); |
| 28 | for (int i = 0; i < 2 * COINBASE_MATURITY; i++) { |
| 29 | MineBlock(g_setup->m_node, CScript() << OP_TRUE); |
| 30 | } |
| 31 | SyncWithValidationInterfaceQueue(); |
| 32 | } |
| 33 | |
| 34 | FUZZ_TARGET_INIT(process_messages, initialize_process_messages) |
| 35 | { |
nothing calls this directly
no test coverage detected