From 859b9ad28fdd306cf383893179407cf2949967e2 Mon Sep 17 00:00:00 2001 From: pasta Date: Wed, 24 Jul 2024 13:50:17 -0500 Subject: [PATCH] style: run clang-format --- src/llmq/params.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/llmq/params.h b/src/llmq/params.h index c59abce8fb..b9d44818f8 100644 --- a/src/llmq/params.h +++ b/src/llmq/params.h @@ -114,17 +114,13 @@ struct LLMQParams { // How many members should we try to send all sigShares to before we give up. int recoveryMembers; public: - [[nodiscard]] constexpr int max_cycles(int quorums_count) const { return useRotation ? quorums_count / signingActiveQuorumCount : quorums_count; } // For how many blocks recent DKG info should be kept - [[nodiscard]] constexpr int max_store_depth() const - { - return max_cycles(keepOldKeys) * dkgInterval; - } + [[nodiscard]] constexpr int max_store_depth() const { return max_cycles(keepOldKeys) * dkgInterval; } }; //static_assert(std::is_trivial_v, "LLMQParams is not a trivial type");