| 62 | if (m_on_call) m_on_call(); |
| 63 | } |
| 64 | static void Call() |
| 65 | { |
| 66 | CBlock block; |
| 67 | BlockValidationState state; |
| 68 | GetMainSignals().BlockChecked(block, state); |
| 69 | } |
| 70 | std::function<void()> m_on_call; |
| 71 | std::function<void()> m_on_destroy; |
| 72 | }; |
nothing calls this directly
no test coverage detected