// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #pragma once namespace dragonx { class App; namespace ui { /** * @brief Render the Mining tab * Controls for CPU mining with RandomX */ void RenderMiningTab(App* app); /** * @brief Returns true when the thread benchmark is actively running. * Used by idle mining to avoid interfering with measurements. */ bool IsMiningBenchmarkActive(); } // namespace ui } // namespace dragonx