From 1f57e4f70123857959999e53fa09a5f25b242713 Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Sat, 9 Dec 2023 23:19:39 +0100 Subject: [PATCH] Reduced min difficulty for testing --- src/side_chain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/side_chain.cpp b/src/side_chain.cpp index e56c010..c2dd95e 100644 --- a/src/side_chain.cpp +++ b/src/side_chain.cpp @@ -42,7 +42,7 @@ LOG_CATEGORY(SideChain) -static constexpr uint64_t MIN_DIFFICULTY = 100000; +static constexpr uint64_t MIN_DIFFICULTY = 1000; static constexpr size_t UNCLE_BLOCK_DEPTH = 3; static_assert(1 <= UNCLE_BLOCK_DEPTH && UNCLE_BLOCK_DEPTH <= 10, "Invalid UNCLE_BLOCK_DEPTH");