| 140 | return true; |
| 141 | } |
| 142 | bool appInitMain(interfaces::BlockAndHeaderTipInfo* tip_info) override |
| 143 | { |
| 144 | if (AppInitMain(*m_context, tip_info)) return true; |
| 145 | // Error during initialization, set exit status before continue |
| 146 | m_context->exit_status.store(EXIT_FAILURE); |
| 147 | return false; |
| 148 | } |
| 149 | void appShutdown() override |
| 150 | { |
| 151 | Shutdown(*m_context); |
no test coverage detected