From 46578db3e6bc21a23e49936f3b61813838f013ee Mon Sep 17 00:00:00 2001 From: alikia2x Date: Wed, 2 Apr 2025 23:24:52 +0800 Subject: [PATCH] update: lower the difficulty of benchmark --- packages/frontend/src/components/VDFtester.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/components/VDFtester.svelte b/packages/frontend/src/components/VDFtester.svelte index fa36b87..cfda9c1 100644 --- a/packages/frontend/src/components/VDFtester.svelte +++ b/packages/frontend/src/components/VDFtester.svelte @@ -79,7 +79,7 @@ let currentDifficulty: bigint | null = null; let worker: Worker | null = null; let currentTestIndex = 0; - const difficulties = [BigInt(100000), BigInt(1000000)]; + const difficulties = [BigInt(20000), BigInt(200000)]; const testCombinations: { N: bigint; difficulty: bigint }[] = []; // 创建需要测试的 N 和难度的组合